:root {
  /* Colors based on the screenshot */
  --color-dark-navy: #041b3b;
  --color-primary-blue: #0052ff;
  --color-cyan: #009cf2;
  --color-white: #ffffff;
  --color-gray: #d1d5db;
  
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --container-max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-dark-navy);
  color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background-color: var(--color-dark-navy);
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container img {
  height: 40px; /* Placeholder for logo */
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a.active, .nav-links a:hover {
  color: var(--color-cyan);
}

.btn-nav {
  background-color: var(--color-cyan);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-nav:hover {
  background-color: #008be0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background-image: url('../screens/BANNER_HERO_CROP.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 15, 36, 0.6); /* Dark overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.btn-hero {
  background-color: var(--color-cyan);
  color: var(--color-white);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-hero:hover {
  background-color: #008be0;
}

/* Projects Grid Section */
.projects-section {
  padding: 60px 0;
  background-color: var(--color-dark-navy);
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

/* First Main Card */
.main-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.main-card-img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.main-card-content h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.main-card-content h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.main-card-content .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.main-card-content p {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-small {
  background-color: var(--color-cyan);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-small:hover {
  background-color: #008be0;
}

/* Secondary Cards */
.project-card {
  display: flex;
  flex-direction: column;
}

.project-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.project-header h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-year {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 14px;
}

.project-card p {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .main-card {
    flex-direction: column;
  }
  .main-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

/* History Page Specific Styles */
.hero-historia {
  background-image: url('../screens/BANNER_HERO_CROP.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  position: relative;
}
.hero-historia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 27, 59, 0.6);
}
.hero-historia h1 {
  font-size: 48px;
  position: relative;
  z-index: 1;
}
.text-center {
  text-align: center;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: var(--color-dark-navy);
}

/* Timeline */
.timeline-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--color-cyan);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}
.timeline-item.left {
  left: 0;
}
.timeline-item.right {
  left: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--color-cyan);
  border: 4px solid #fff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-item.image-item::after {
  display: none;
}
.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 6px;
  text-align: right;
}
.timeline-item.right .timeline-content {
  text-align: left;
}
.timeline-year {
  color: var(--color-cyan);
  font-weight: 800;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-dark-navy);
}
.timeline-content p, .timeline-content ul {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.timeline-content ul {
  padding-left: 20px;
}
.timeline-content ul li {
  margin-bottom: 10px;
}
.timeline-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 10px;
}

/* MVV Section */
.mvv-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mvv-card {
  background: white;
  border: 2px solid var(--color-cyan);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
}
.mvv-card h3 {
  color: var(--color-dark-navy);
  margin: 20px 0 15px;
  font-size: 20px;
}
.mvv-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}
.icon-heart, .icon-eye, .icon-star {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: var(--color-cyan);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.icon-heart {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
}
.icon-eye {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
}
.icon-star {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}
.team-card h3 {
  color: var(--color-dark-navy);
  font-size: 18px;
  margin-bottom: 5px;
}
.team-card p {
  color: #777;
  font-size: 14px;
}

/* CTA Community */
.cta-community {
  background-image: url('../screens/hero_bg_novo.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  color: white;
}
.cta-community::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 27, 59, 0.85);
}
.cta-community .container {
  position: relative;
  z-index: 1;
}
.cta-community h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.cta-community h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.cta-community p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  background-color: white;
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.4 5.6 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.6 18.4 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.4 5.6 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.6 18.4 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z"/></svg>');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

/* Timeline Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item.right {
    left: 0%;
  }
  .timeline-item.left .timeline-content {
    text-align: left;
  }
  .timeline-item::after {
    left: 21px !important;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Projects Page Specific Styles */
.bg-dark-navy {
  background-color: var(--color-dark-navy);
  color: white;
}
.page-title-section {
  padding: 80px 0 40px;
}
.page-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}
.projects-list-section {
  padding-bottom: 100px;
}
.project-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}
.project-image {
  flex: 1;
}
.project-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.project-details {
  flex: 1;
}
.project-details h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}
.project-details p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}
.project-stats {
  list-style-type: none;
  padding: 0;
  margin-bottom: 35px;
}
.project-stats li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  color: #ddd;
  font-weight: 700;
}
.project-stats li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-cyan);
}
@media screen and (max-width: 768px) {
  .project-row, .project-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
}

/* Contact Page Specific Styles */
.contact-page {
  padding: 80px 0 100px;
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 14px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.btn-submit {
  background-color: var(--color-cyan);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s ease;
  margin-top: 5px;
}
.btn-submit:hover {
  opacity: 0.9;
}
.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
}
.map-container {
  margin-top: 20px;
  width: 100%;
}
.social-large-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
}
.social-icon-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.social-icon-large:hover {
  transform: translateY(-5px);
}
.social-icon-large svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .social-large-icons {
    gap: 40px;
  }
}

/* Transparency Dashboard Styles */
.bg-light-gray {
  background-color: #f4f6f9;
  color: var(--color-dark-navy);
}
.dashboard-page {
  padding: 60px 0 100px;
}
.dashboard-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-dark-navy);
}
.dashboard-tabs {
  background-color: var(--color-dark-navy);
  border-radius: 50px;
  display: flex;
  padding: 5px;
  margin-bottom: 40px;
}
.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn.active {
  background-color: white;
  color: var(--color-dark-navy);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
}
.financial-summary-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}
.financial-item {
  flex: 1;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}
.financial-divider {
  width: 1px;
  background-color: #eee;
  margin: 0 15px;
}
.financial-label {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  margin-bottom: 5px;
}
.financial-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark-navy);
  margin-bottom: 15px;
}
.financial-graphic {
  width: 100%;
  height: 50px;
}
.financial-graphic svg {
  width: 100px;
  height: 100%;
}
.progress-item {
  flex: 1.5;
  justify-content: center;
}
.progress-labels, .progress-labels-right {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark-navy);
  margin-bottom: 10px;
}
.progress-labels-right {
  text-align: right;
  margin-top: 10px;
}
.progress-bar-large-container {
  width: 100%;
  height: 30px;
  background-color: #d1ecf9;
  border-radius: 15px;
  overflow: hidden;
}
.progress-bar-large-fill {
  height: 100%;
  background-color: #72bbf1;
  border-radius: 15px;
}

.section-title-small {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark-navy);
  margin-bottom: 20px;
}
.expenses-table-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.expenses-header {
  background-color: var(--color-dark-navy);
  color: white;
  display: flex;
  padding: 15px 20px;
  font-weight: 700;
}
.expenses-row {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.expenses-row:last-child {
  border-bottom: none;
}
.col-cat {
  flex: 2;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #444;
}
.col-val {
  flex: 1;
  font-weight: 700;
  color: #444;
}
.col-perc {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.mini-bar-container {
  flex-grow: 1;
  height: 12px;
  background-color: transparent;
  border-radius: 6px;
}
.mini-bar-fill {
  height: 100%;
  background-color: var(--color-dark-navy);
  border-radius: 6px;
}
.col-cat div[class^="icon-"] {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  background-color: var(--color-dark-navy);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.icon-briefcase {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20 6h-4V4c0-1.1-.9-2-2-2h-4C8.9 2 8 2.9 8 4v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20 6h-4V4c0-1.1-.9-2-2-2h-4C8.9 2 8 2.9 8 4v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z"/></svg>');
}
.icon-document {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>');
}
.icon-building {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></svg>');
}
.icon-users {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>');
}
.icon-megaphone {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z"/></svg>');
}

.document-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.doc-icon {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark-navy);
  margin-bottom: 15px;
  border: 2px solid var(--color-dark-navy);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
}
.doc-icon::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 15px; height: 15px;
  background: white;
  border-left: 2px solid var(--color-dark-navy);
  border-bottom: 2px solid var(--color-dark-navy);
}
.document-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-dark-navy);
  margin-bottom: 20px;
}
.btn-download {
  background-color: #bee2f9;
  color: var(--color-dark-navy);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s ease;
}
.btn-download:hover {
  opacity: 0.8;
}

@media screen and (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .financial-summary-card {
    flex-direction: column;
    gap: 20px;
  }
  .financial-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .dashboard-tabs {
    flex-direction: column;
  }
  .expenses-header {
    display: none;
  }
  .expenses-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .col-perc {
    width: 100%;
  }
}

/* =========================================
   RESPONSIVIDADE GERAL (MOBILE & TABLET)
   ========================================= */

@media screen and (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-container {
    flex-direction: column;
  }
  .contact-form, .contact-info {
    width: 100%;
  }
  .project-row {
    flex-direction: column;
  }
  .project-row .project-image, .project-row .project-details {
    width: 100%;
    padding: 20px;
  }
  .project-image {
    min-height: 250px;
    border-radius: 12px 12px 0 0;
  }
}

@media screen and (max-width: 768px) {
  /* Cabeçalho */
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  .nav-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .btn-nav {
    width: 100%;
    text-align: center;
  }

  /* Hero Sections */
  .hero, .hero-historia {
    height: auto;
    padding: 80px 20px;
  }
  .hero-content h1, .hero-historia h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }
  
  /* Timeline (História) */
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column !important;
    padding-left: 50px;
    align-items: flex-start !important;
  }
  .timeline-content, .timeline-image {
    width: 100% !important;
    text-align: left !important;
    padding: 0 0 20px 0 !important;
  }
  .timeline-dot {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }
  
  /* Textos */
  .section-title {
    font-size: 28px;
  }
}
