@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* Ã¢â€â‚¬Ã¢â€â‚¬ Variables Ã¢â€â‚¬Ã¢â€â‚¬ */
:root {
  /* Logo-extracted palette */
  --teal:        #3ca8a8;
  --teal-mid:    #2a8fa0;
  --teal-dark:   #1a6e80;
  --teal-deep:   #0d4a60;
  --navy:        #102040;
  --navy-light:  #1a3258;

  /* Gradient da logo */
  --grad-logo:   linear-gradient(135deg, #3cb8b8 0%, #2a90a8 35%, #1870a0 65%, #143c8c 100%);
  --grad-logo-h: linear-gradient(135deg, #4dcfcf 0%, #38a8c0 35%, #2080b8 65%, #1e50a8 100%);
  --grad-subtle: linear-gradient(135deg, rgba(60,168,168,0.12) 0%, rgba(20,60,140,0.12) 100%);
  --cream: #f5f5f5;
  --cream-dark: #f9f9f9;
  --sand: #0000001a;
  --charcoal:   #252525;
  --mid-grey:   #646464;
  --light-grey: #154f93;
  --white:      #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 0;
  --radius: 0px;
  --shadow-md: 0 8px 40px rgba(16, 32, 64, 0.12);
  --shadow-lg: 0 20px 60px rgba(16, 32, 64, 0.18);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Reset Ã¢â€â‚¬Ã¢â€â‚¬ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Container Ã¢â€â‚¬Ã¢â€â‚¬ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   NAVIGATION
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(16, 32, 64, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(60,168,168,0.18);
  transition: background 0.3s, padding 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 2px solid var(--teal-dark);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
  .nav-inner { padding: 0 24px; }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col .contact-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-instagram:hover { color: #fff; }
.footer-instagram svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   UTILITIES
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.label-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 500;
  margin-bottom: 14px;
}
.divider-line {
  width: 40px; height: 2px;
  background: var(--grad-logo);
  margin: 20px 0;
}
.divider-line.centered { margin: 20px auto; }
.grad-text {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   LGPD
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.lgpd-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 1px solid rgba(60,168,168,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lgpd-banner.visible { transform: translateY(0); }
.lgpd-text { max-width: 800px; line-height: 1.6; }
.lgpd-text a { color: var(--teal); text-decoration: underline; }
.lgpd-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lgpd-btn {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 22px;
  cursor: pointer;
  border: none;
  font-weight: 500;
}
.lgpd-accept {
  background: var(--grad-logo);
  color: #fff;
}
@media (max-width: 768px) {
  .lgpd-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HERO
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/header.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(16,32,64,0.3) 0%,
    rgba(16,32,64,0.52) 40%,
    rgba(13,74,96,0.92) 100%
  );
}
/* Ornamento de ondas no topo do hero Ã¢â‚¬â€ referÃƒÂªncia ÃƒÂ  logo */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--teal);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  max-width: 820px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title strong {
  font-weight: 600;
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 34px;
  background: var(--grad-logo);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  position: relative;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 34px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(60,168,168,0.12);
}
/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s 1.4s infinite;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ INTRO STRIP (stats)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.intro-strip {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.intro-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-logo);
  opacity: 0.08;
}
.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.intro-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.intro-stat:last-child { border-right: none; }
.intro-stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-stat p {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.5;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ MISSÃƒÆ’O
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.mission-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.mission-text .section-title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mission-text p {
  font-size: 1.02rem;
  color: var(--mid-grey);
  margin-bottom: 18px;
  line-height: 1.82;
}
.mission-quote {
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(60,168,168,0.06), rgba(20,60,140,0.06));
  border-left: 3px solid transparent;
  border-image: var(--grad-logo) 1;
}
.mission-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--teal-dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.mission-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
  font-style: normal;
}
.mission-image-wrap {
  position: relative;
}
.mission-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.mission-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ ATIVIDADES
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.atividades-section {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-title-lg em {
  font-style: italic;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.link-all {
  font-family: var(--font-ui);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.link-all:hover { color: var(--teal); }

.atividades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ativ-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: default;
}
.ativ-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.ativ-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ativ-card:hover img { transform: scale(1.05); }
.ativ-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,42,80,0.88) 0%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.ativ-card-label {
  font-family: var(--font-ui);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.ativ-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ IMPACTO (nova seÃƒÂ§ÃƒÂ£o)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.impacto-section {
  padding: var(--section-pad);
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.impacto-section::after {
  content: 'ACF';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 700;
  color: rgba(16,32,64,0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.06em;
}
.impacto-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.impacto-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.impacto-header p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 55ch;
}
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.impacto-card {
  background: var(--cream-dark);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.impacto-card:hover { background: #fff; }
.impacto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-logo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.impacto-card:hover::before { transform: scaleX(1); }
.impacto-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.impacto-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.impacto-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.75;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ GALERIA STRIP
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.galeria-strip {
  padding: 72px 0;
  background: var(--navy);
  overflow: hidden;
}
.galeria-strip-header {
  max-width: var(--max-w);
  margin: 0 auto 36px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.galeria-strip-header span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.01em;
  font-style: italic;
}
.galeria-strip-header a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  transition: color 0.2s;
}
.galeria-strip-header a:hover { color: #fff; }
.galeria-track {
  display: flex;
  gap: 4px;
  animation: galleryScroll 40s linear infinite;
  margin-bottom: 8px;
}
.galeria-track-reverse {
  animation: galleryScrollReverse 40s linear infinite;
}

.galeria-track:hover { animation-play-state: paused; }
.galeria-item {
  flex: 0 0 280px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(0.7);
}
.galeria-item:hover img { transform: scale(1.06); filter: saturate(1); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ DESTAQUE TEXTUAL (nova seÃƒÂ§ÃƒÂ£o)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.destaque-texto-section {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.destaque-texto-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.dt-left {
  position: relative;
}
.dt-left-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  user-select: none;
}
.dt-left-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8px;
}
.dt-left-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.dt-right p {
  font-size: 1.05rem;
  color: var(--mid-grey);
  line-height: 1.85;
  margin-bottom: 20px;
}
.dt-right p:last-of-type { margin-bottom: 32px; }
.dt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dt-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--sand);
  color: var(--mid-grey);
  transition: border-color 0.2s, color 0.2s;
}
.dt-tag:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ QUOTE BREAK (nova seÃƒÂ§ÃƒÂ£o)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.quote-break {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.quote-break-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-logo);
}
.quote-break-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
      transparent 1px, transparent 32px
    );
}
.quote-break-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.quote-break blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.quote-break cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ PARCEIROS (nova seÃƒÂ§ÃƒÂ£o)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.parceiros-section {
  padding: 72px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}
.parceiros-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.parceiros-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-grey);
  white-space: nowrap;
  flex-shrink: 0;
}
.parceiros-line {
  width: 1px;
  height: 40px;
  background: var(--sand);
  flex-shrink: 0;
}
.parceiros-list {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.parceiro-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--light-grey);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.parceiro-item:hover { color: var(--teal-dark); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOME Ã¢â‚¬â€ CTA
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.cta-section .label-tag { color: var(--teal); }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-section h2 em {
  font-style: italic;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ANIMATIONS
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes galleryScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .mission-layout { grid-template-columns: 1fr; gap: 48px; }
  .mission-image-accent { display: none; }
  .atividades-grid { grid-template-columns: 1fr 1fr; }
  .ativ-card:first-child { grid-row: auto; aspect-ratio: 3/4; }
  .intro-strip-inner { grid-template-columns: 1fr 1fr; }
  .intro-stat:nth-child(2) { border-right: none; }
  .impacto-grid { grid-template-columns: 1fr 1fr; }
  .destaque-texto-inner { grid-template-columns: 1fr; gap: 32px; }
  .dt-left-num { font-size: 8rem; }
}
@media (max-width: 768px) {
  .atividades-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-content { padding: 0 24px 80px; }
  .intro-strip-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .intro-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 28px 0; }
  .intro-stat:last-child { border-bottom: none; }
  .impacto-grid { grid-template-columns: 1fr; }
  .parceiros-inner { gap: 24px; }
  .galeria-strip-header { padding: 0 24px; }
  .quote-break-inner { padding: 0 24px; }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CONTATO
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.contato-layout {
  padding: 88px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contato-info .lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.contato-info p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contato-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contato-item { display: flex; gap: 16px; align-items: flex-start; }
.contato-item-icon {
  width: 44px; height: 44px;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.contato-item-icon svg { width: 20px; height: 20px; }
.contato-item-body h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 4px;
}
.contato-item-body p, .contato-item-body a { font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; }
.contato-item-body a:hover { color: var(--teal); }
.instagram-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--navy);
  color: #fff;
  transition: background 0.2s;
}
.instagram-block:hover { background: var(--teal-deep); }
.instagram-block svg { width: 28px; height: 28px; color: var(--teal); flex-shrink: 0; }
.instagram-block-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.instagram-block-text strong { font-family: var(--font-display); font-size: 1rem; font-weight: 400; }
.contato-form-wrap { background: var(--cream-dark); padding: 48px 44px; }
.contato-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contato-form-wrap .sub { font-size: 0.9rem; color: var(--mid-grey); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--sand);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 8px; }
.form-submit button {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 40px;
  background: var(--grad-logo);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: 100%;
}
.form-submit button:hover { opacity: 0.88; transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success.visible { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--teal-dark); margin-bottom: 10px; }
.form-success p { font-size: 0.95rem; color: var(--mid-grey); }
.mapa-section { background: var(--cream-dark); padding: 72px 0 0; }
.mapa-section .container { padding-bottom: 0; }
.mapa-section h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.01em; }
.mapa-placeholder { width: 100%; height: 340px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; position: relative; overflow: hidden; }
.mapa-placeholder::before { content: ''; position: absolute; inset: 0; background-image: url('<?php echo get_template_directory_uri(); ?>/images/31.jpg'); background-size: cover; background-position: center; opacity: 0.12; }
.mapa-placeholder span { position: relative; z-index: 1; }
@media (max-width: 1024px) { .contato-layout { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .contato-form-wrap { padding: 32px 24px; } .form-row { grid-template-columns: 1fr; } .form-group.full { grid-column: auto; } }


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   TRANSPARÃƒÅ NCIA
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.transp-intro { padding: 88px 0 60px; }
.transp-intro-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.transp-intro-text .lead { font-family: var(--font-display); font-size: 1.45rem; font-weight: 300; color: var(--navy); line-height: 1.55; margin-bottom: 24px; letter-spacing: -0.01em; }
.transp-intro-text p { font-size: 1.02rem; color: var(--mid-grey); line-height: 1.82; margin-bottom: 16px; }
.transp-aside { background: var(--navy); padding: 36px 32px; color: #fff; }
.transp-aside h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--teal); margin-bottom: 20px; }
.transp-aside ul { display: flex; flex-direction: column; gap: 14px; }
.transp-aside ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.transp-aside ul li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.docs-section { padding: var(--section-pad); background: var(--cream-dark); }
.docs-section .section-title-lg { margin-bottom: 48px; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.doc-card { background: #fff; padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; border-top: 3px solid transparent; transition: border-color 0.25s; }
.doc-card:hover { border-color: var(--teal); }
.doc-icon { width: 44px; height: 44px; background: var(--grad-subtle); display: flex; align-items: center; justify-content: center; color: var(--teal-dark); }
.doc-icon svg { width: 22px; height: 22px; }
.doc-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--navy); line-height: 1.3; }
.doc-card p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.65; flex: 1; }
.doc-card .doc-year { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.doc-note { margin-top: 32px; padding: 20px 24px; background: var(--grad-subtle); border-left: 3px solid var(--teal); font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }
.doc-note strong { color: var(--navy); }
.contas-section { padding: var(--section-pad); }
.contas-section .section-title-lg { margin-bottom: 48px; }
.contas-table-wrap { overflow-x: auto; }
.contas-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.contas-table thead tr { background: var(--navy); color: #fff; }
.contas-table thead th { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 20px; text-align: left; font-weight: 500; }
.contas-table tbody tr { border-bottom: 1px solid var(--cream-dark); transition: background 0.15s; }
.contas-table tbody tr:hover { background: rgba(60,168,168,0.04); }
.contas-table tbody td { padding: 16px 20px; color: var(--charcoal); vertical-align: top; }
.contas-table tbody td:first-child { font-weight: 500; color: var(--navy); }
.badge-disponivel { display: inline-block; padding: 3px 10px; background: rgba(60,168,168,0.1); color: var(--teal-dark); font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.badge-pendente { display: inline-block; padding: 3px 10px; background: rgba(180,160,100,0.12); color: #7a6a30; font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.transp-cta { background: var(--cream-dark); padding: 72px 0; text-align: center; }
.transp-cta h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.02em; }
.transp-cta p { font-size: 1rem; color: var(--mid-grey); max-width: 500px; margin: 0 auto 32px; line-height: 1.75; }
@media (max-width: 1024px) { .transp-intro-layout { grid-template-columns: 1fr; } .docs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .docs-grid { grid-template-columns: 1fr; } .contas-table { font-size: 0.82rem; } .contas-table thead th, .contas-table tbody td { padding: 12px 14px; } }


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PAGE HERO (interno)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.page-hero {
  padding-top: 28vh;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-logo);
  opacity: 0.65;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,32,64,0.92) 30%, rgba(16,32,64,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .label-tag { margin-bottom: 12px; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  letter-spacing: -0.02em;
}
.page-hero-content h1 em { font-style: italic; font-weight: 300; background: var(--grad-logo); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   QUEM SOMOS
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.qs-intro { padding: 88px 0 72px; }
.qs-intro-layout { display: grid; grid-template-columns: 2fr 1.2fr; gap: 80px; align-items: start; }
.qs-intro-text .lead { font-family: var(--font-display); font-size: 1.45rem; font-weight: 300; color: var(--navy); line-height: 1.55; margin-bottom: 28px; letter-spacing: -0.01em; }
.qs-intro-text p { font-size: 1.05rem; color: var(--mid-grey); line-height: 1.82; margin-bottom: 18px; }
.qs-aside { position: sticky; top: 96px; }
.qs-aside-card { background: var(--teal-deep); color: #fff; padding: 36px 32px; margin-bottom: 3px; }
.qs-aside-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; margin-bottom: 12px; background: var(--grad-logo); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.qs-aside-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.68); }
.projetos-section { padding: var(--section-pad); background: var(--cream-dark); }
.projetos-section .section-title-lg { margin-bottom: 52px; }
.projetos-list { display: flex; flex-direction: column; gap: 3px; }
.projeto-item { display: grid; grid-template-columns: 320px 1fr; background: #fff; overflow: hidden; transition: box-shadow 0.25s; }
.projeto-item:hover { box-shadow: var(--shadow-md); }
.projeto-item-img { aspect-ratio: 4/3; overflow: hidden; }
.projeto-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.projeto-item:hover .projeto-item-img img { transform: scale(1.04); }
.projeto-item-body { padding: 40px 48px; display: flex; flex-direction: column; justify-content: center; }
.projeto-item-body .label-tag { margin-bottom: 10px; }
.projeto-item-body h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.projeto-item-body p { font-size: 1rem; color: var(--mid-grey); line-height: 1.75; }
.valores-section { padding: var(--section-pad); }
.valores-section .section-title-lg { margin-bottom: 52px; }
.valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.valor-card { background: var(--cream-dark); padding: 40px 32px; border-top: 3px solid transparent; transition: border-color 0.25s, background 0.25s; }
.valor-card:hover { border-color: var(--teal); background: #fff; }
.valor-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; background: var(--grad-logo); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.valor-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.valor-card p { font-size: 0.92rem; color: var(--mid-grey); line-height: 1.72; }
.frase-section { position: relative; padding: 88px 0; text-align: center; overflow: hidden; }
.frase-section::before { content: ''; position: absolute; inset: 0; background: var(--grad-logo); }
.frase-section::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 32px); }
.frase-section blockquote { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-style: italic; font-weight: 300; color: #fff; max-width: 820px; margin: 0 auto; line-height: 1.4; letter-spacing: -0.02em; position: relative; z-index: 1; }
.frase-section cite { display: block; margin-top: 24px; font-family: var(--font-ui); font-size: 0.73rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-style: normal; position: relative; z-index: 1; }
@media (max-width: 1024px) { .qs-intro-layout { grid-template-columns: 1fr; } .qs-aside { position: static; } .projeto-item { grid-template-columns: 1fr; } .projeto-item-img { aspect-ratio: 16/9; } .valores-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .valores-grid { grid-template-columns: 1fr; } .projeto-item-body { padding: 28px 24px; } .page-hero-content { padding: 0 24px 48px; } }
