/* ================================================================
   VALEZIN & MALAVAZZI — DESIGN SYSTEM PREMIUM
   Referência: nwadv.com.br — Estilo: Corporativo Editorial de Luxo
   Paleta: Verde-oliva profundo + tons escuros + off-white
   Tipografia: Cormorant Garamond (serif) + Inter (sans)
   ================================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores Primárias */
  --green:        #6A7D58;
  --green-d:      #556647;
  --green-m:      #5E7050;
  --green-l:      #8A9A7A;
  --green-xl:     #AEBB9E;
  --green-pale:   #EAF0E0;
  --green-bg:     #F4F7EE;
  --green-tint:   rgba(106,125,88,.08);
  --green-tint2:  rgba(106,125,88,.15);

  /* Tons Escuros — clareados ~55% */
  --dark:         #3A4430;
  --dark-2:       #44503A;
  --dark-3:       #505D44;
  --dark-4:       #5C6A4E;
  --dark-5:       #687860;

  /* Grises */
  --gray-1:       #586248;
  --gray-2:       #748060;
  --gray-3:       #9EAA8A;
  --gray-4:       #C4CEAE;
  --gray-5:       #DDE6CC;

  /* Neutros */
  --white:        #FFFFFF;
  --off-white:    #FAFAF7;
  --cream:        #F5F4F0;
  --black:        #2A3020;

  /* Tipografia */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:    1280px;
  --container-sm: 960px;
  --radius:       3px;
  --radius-md:    6px;
  --radius-lg:    12px;
  --radius-xl:    20px;

  /* Sombras */
  --s-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --s-md:   0 4px 16px rgba(0,0,0,.12);
  --s-lg:   0 12px 40px rgba(0,0,0,.16);
  --s-xl:   0 24px 64px rgba(0,0,0,.22);
  --s-2xl:  0 40px 100px rgba(0,0,0,.28);

  /* Transições */
  --t:      0.22s ease;
  --t-md:   0.38s ease;
  --t-lg:   0.55s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: #1C1F16;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

::selection { background: rgba(78,88,64,.18); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green-l); border-radius: 2px; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }
@media (max-width: 1024px) { .container { padding: 0 32px; } }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(221,227,212,.65); }

/* ── Títulos ── */
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.3px;
  color: #1C1F16;
}
.title-light { color: var(--white); }
h2 em { font-style: italic; color: var(--green-l); }
.title-light em { color: var(--green-pale); }

/* ── Section Head ── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   BOTÕES
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-lg { padding: 16px 36px; font-size: 0.925rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green);
  color: var(--green-pale);
  border-color: var(--green);
}
.btn-primary::after { background: rgba(0,0,0,.12); }
.btn-primary:hover {
  background: var(--green-m);
  border-color: var(--green-m);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(78,88,64,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-d);
  border-color: var(--green-d);
}
.btn-outline-dark:hover {
  background: var(--green-d);
  color: var(--green-pale);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

/* Link Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-l);
  text-decoration: none;
  transition: gap var(--t), color var(--t);
}
.link-arrow:hover { gap: 14px; color: var(--green-d); }
.link-arrow i { font-size: 0.75rem; transition: transform var(--t); }

/* ================================================================
   BARRA DE PROGRESSO
   ================================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-d), var(--green), var(--green-l));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-left a,
.topbar-left span,
.topbar-right a {
  font-size: 0.74rem;
  color: rgba(221,227,212,.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--t);
  letter-spacing: 0.1px;
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--green-pale); }
.topbar-left i,
.topbar-right i { font-size: 0.68rem; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.1);
}
.topbar-cta {
  font-weight: 600 !important;
  color: var(--green-pale) !important;
  background: rgba(78,88,64,.25);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(78,88,64,.4);
  transition: all var(--t) !important;
}
.topbar-cta:hover {
  background: rgba(78,88,64,.45) !important;
  border-color: rgba(78,88,64,.7) !important;
}
@media (max-width: 900px) { .topbar { display: none; } }

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--t-md), box-shadow var(--t-md);
}
#navbar.scrolled {
  background: rgba(14,16,12,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 40px rgba(0,0,0,.4);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 40px;
}
@media (max-width: 1024px) { .navbar-inner { padding: 0 32px; } }

.navbar-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}
.navbar-logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity var(--t);
}
.navbar-logo:hover img { opacity: .8; }
.logo-light { display: block; }
.logo-dark  { display: none; }

/* Nav menu */
.navbar-nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  justify-content: center;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(221,227,212,.7);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--t);
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--green-pale); }
.nav-arrow {
  font-size: 0.58rem;
  transition: transform var(--t);
  margin-left: 2px;
}
.nav-item:hover .nav-arrow,
.nav-item.active-page .nav-arrow { transform: none; }
.nav-item.nav-has-sub:hover .nav-arrow,
.nav-item.nav-has-mega:hover .nav-arrow { transform: rotate(180deg); }
.nav-item.active-page .nav-link { color: var(--green-pale); font-weight: 600; }

/* Submenu */
.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  box-shadow: var(--s-xl);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--t);
  z-index: 500;
  overflow: hidden;
}
.nav-item.nav-has-sub:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.submenu-inner { padding: 8px 0; }
.sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.84rem;
  color: var(--gray-4);
  text-decoration: none;
  transition: color var(--t), background var(--t);
}
.sub-link:hover {
  color: var(--green-pale);
  background: rgba(255,255,255,.03);
}

/* Mega menu */
.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  box-shadow: var(--s-2xl);
  width: 760px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t);
  z-index: 500;
  overflow: hidden;
}
.nav-item.nav-has-mega:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 210px;
}
.mega-col {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.04);
}
.mega-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-xl);
  margin-bottom: 16px;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: all var(--t);
}
.mega-link:last-child { border-bottom: none; }
.mega-link i {
  font-size: 1rem;
  color: var(--green-l);
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: color var(--t);
}
.mega-link:hover i { color: var(--green-pale); }
.mega-link div { display: flex; flex-direction: column; gap: 1px; }
.mega-link strong {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-4);
  transition: color var(--t);
}
.mega-link span {
  font-size: 0.76rem;
  color: var(--gray-3);
  transition: color var(--t);
}
.mega-link:hover strong { color: var(--green-pale); }

.mega-aside {
  padding: 32px 24px;
  background: var(--dark-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.mega-aside img { width: 84px; height: 84px; object-fit: contain; filter: brightness(1.1); }
.mega-aside p { font-size: 0.8rem; color: var(--gray-3); line-height: 1.55; }

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1002;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-pale);
  border-radius: 1px;
  transition: all var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: calc(100vh - 76px);
  min-height: 620px;
  max-height: 960px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Slides */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.3) saturate(.7);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(14,16,12,.92) 0%, rgba(14,16,12,.5) 55%, rgba(14,16,12,.2) 100%),
    linear-gradient(to top, rgba(14,16,12,.6) 0%, transparent 40%);
}

/* Hero body */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 700px;
  padding: 60px 0 20px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-xl);
  margin-bottom: 24px;
  display: block;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--green-pale);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(221,227,212,.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Pillars bar */
.hero-footer {
  position: relative;
  z-index: 2;
  background: rgba(14,16,12,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(78,88,64,.2);
}
.hero-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 220px;
  align-items: center;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
}
.pillar-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(107,117,96,.22);
  flex-shrink: 0;
  line-height: 1;
}
.pillar-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-pale);
  margin-bottom: 3px;
}
.pillar-text p {
  font-size: 0.76rem;
  color: var(--gray-3);
  line-height: 1.4;
}
.pillar-sep {
  width: 1px;
  height: 48px;
  background: rgba(78,88,64,.18);
}
.pillar-cta {
  background: var(--green);
  justify-content: center;
  transition: background var(--t);
}
.pillar-cta:hover { background: var(--green-m); }
.pillar-cta a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-pale);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color var(--t);
}
.pillar-cta a:hover { color: var(--white); }
.pillar-cta i { font-size: 1.15rem; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 108px;
  right: 52px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(221,227,212,.28);
  border: none;
  padding: 0;
  transition: all var(--t);
}
.dot.active {
  background: var(--green-pale);
  width: 26px;
  border-radius: 4px;
}

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   SEÇÃO SOBRE
   ================================================================ */
.section-sobre {
  background: var(--off-white);
  padding: 120px 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.sobre-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-md);
  filter: saturate(.88);
  box-shadow: var(--s-2xl);
}
.sobre-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 108px;
  height: 108px;
  background: var(--off-white);
  border-radius: 50%;
  padding: 10px;
  border: 4px solid var(--off-white);
  box-shadow: var(--s-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-badge img { width: 100%; height: 100%; object-fit: contain; }

.sobre-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--s-lg);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-pale);
  line-height: 1;
}
.stat-suf {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green-l);
  vertical-align: top;
  margin-top: 2px;
  display: inline-block;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 6px;
}

/* Sobre texto */
.sobre-text { display: flex; flex-direction: column; align-items: flex-start; }
.sobre-text .eyebrow { display: block; }
.sobre-text h2 { margin-bottom: 28px; }
.sobre-desc p {
  font-size: 0.97rem;
  color: #4A4D44;
  line-height: 1.88;
  margin-bottom: 14px;
}
.sobre-pilares {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.pilar-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  border: 1px solid rgba(78,88,64,.18);
  color: var(--green-d);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all var(--t);
}
.pilar-tag i { color: var(--green); font-size: 0.78rem; }
.pilar-tag:hover {
  background: var(--green-tint2);
  transform: translateY(-1px);
}

/* ================================================================
   SEÇÃO ÁREAS
   ================================================================ */
.section-areas {
  background: var(--dark-2);
  padding: 120px 0;
}

/* Nav tabs */
.areas-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.areas-nav::-webkit-scrollbar { display: none; }
.area-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-3);
  padding: 14px 24px;
  transition: all var(--t);
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.area-btn:hover { color: var(--green-pale); }
.area-btn.active {
  color: var(--green-pale);
  border-bottom-color: var(--green);
  font-weight: 600;
}

/* Panels */
.areas-content { min-height: 440px; }
.area-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.area-panel.active { display: grid; }

.area-panel-text {
  padding: 56px 60px 56px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.area-icon {
  width: 56px;
  height: 56px;
  background: rgba(78,88,64,.15);
  border: 1px solid rgba(78,88,64,.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-l);
  margin-bottom: 32px;
  transition: all var(--t-md);
}
.area-panel:hover .area-icon {
  background: rgba(78,88,64,.25);
  border-color: rgba(78,88,64,.5);
}
.area-panel-text h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.area-panel-text > p {
  font-size: 0.96rem;
  color: var(--gray-4);
  line-height: 1.85;
  margin-bottom: 28px;
}
.area-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 36px;
}
.area-list li {
  font-size: 0.87rem;
  color: var(--gray-4);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 1px;
  background: var(--green-l);
}

.area-panel-img {
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--dark-4);
}
.area-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.8);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.area-panel:hover .area-panel-img img {
  transform: scale(1.04);
  filter: saturate(.85) brightness(.9);
}

/* ================================================================
   NÚMEROS
   ================================================================ */
.section-numeros {
  background: var(--green-d);
  padding: 80px 0;
}
.numeros-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.numero-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  gap: 8px;
}
.numero-sep {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.num-val {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--green-pale);
  line-height: 1;
  display: inline;
}
.num-suf {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green-l);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}
.num-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(221,227,212,.5);
  margin-top: 8px;
  display: block;
}

/* ================================================================
   DIFERENCIAL / METODOLOGIA
   ================================================================ */
.section-diferencial {
  background: var(--cream);
  padding: 120px 0;
}
.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.diferencial-left {
  position: sticky;
  top: 100px;
}
.diferencial-left .eyebrow { display: block; }
.diferencial-left h2 { margin-bottom: 20px; }
.diferencial-left > p {
  font-size: 0.97rem;
  color: #4A4D44;
  line-height: 1.88;
  margin-bottom: 36px;
}
.diferencial-left blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 22px;
  margin-bottom: 40px;
  background: rgba(78,88,64,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.diferencial-left blockquote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-d);
  line-height: 1.5;
}

.diferencial-right { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  padding: 28px 32px;
  border-left: 2px solid rgba(78,88,64,.15);
  margin-left: 20px;
  position: relative;
  transition: all var(--t-md);
}
.step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(78,88,64,.2);
  transition: all var(--t);
}
.step:hover { border-left-color: var(--green); }
.step:hover::before {
  background: var(--green);
  border-color: var(--green);
}
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(78,88,64,.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
  transition: color var(--t);
}
.step:hover .step-num { color: var(--green); }
.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1C1F16;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.88rem;
  color: #5A5D54;
  line-height: 1.72;
}

/* ================================================================
   SÓCIOS
   ================================================================ */
.section-socios {
  background: var(--dark);
  padding: 120px 0;
}
.socios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.socio-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: border-color var(--t-md), transform var(--t-md), box-shadow var(--t-md);
}
.socio-card:hover {
  border-color: rgba(78,88,64,.25);
  transform: translateY(-4px);
  box-shadow: var(--s-xl);
}

.socio-foto {
  position: relative;
  overflow: hidden;
}
.socio-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(.75) brightness(.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.socio-card:hover .socio-foto img {
  transform: scale(1.06);
  filter: saturate(.85) brightness(.92);
}
.socio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,16,12,.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--t-md);
}
.socio-card:hover .socio-overlay { opacity: 1; }
.socio-links {
  display: flex;
  gap: 8px;
}
.socio-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--t);
}
.socio-links a:hover { background: var(--green); }

.socio-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.socio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.socio-tags span {
  background: rgba(78,88,64,.1);
  border: 1px solid rgba(78,88,64,.2);
  color: var(--green-pale);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.socio-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.1;
}
.socio-role {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-l);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.socio-info > p {
  font-size: 0.88rem;
  color: var(--gray-4);
  line-height: 1.78;
  margin-bottom: 20px;
  flex: 1;
}

/* ================================================================
   GALERIA
   ================================================================ */
.section-galeria { overflow: hidden; }
.galeria-header {
  background: var(--dark-3);
  padding: 80px 0 52px;
}
.galeria-header .eyebrow { display: block; }
.galeria-header h2 { margin-bottom: 14px; }
.galeria-header p {
  font-size: 0.97rem;
  color: var(--gray-4);
}
.galeria-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 420px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.78);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.gal-item:hover img {
  transform: scale(1.08);
  filter: saturate(.88) brightness(.94);
}
.gal-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,16,12,.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--t-md);
}
.gal-item:hover .gal-caption { opacity: 1; }
.gal-caption span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* ================================================================
   CTA
   ================================================================ */
.section-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
}
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.18) saturate(.5);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(14,16,12,.97) 40%, rgba(14,16,12,.72) 100%);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}

.cta-text .eyebrow { display: block; }
.cta-text h2 { margin-bottom: 18px; }
.cta-text > p {
  font-size: 1rem;
  color: var(--gray-4);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  transition: all var(--t);
}
.cta-contact-item:hover {
  background: rgba(78,88,64,.15);
  border-color: rgba(78,88,64,.3);
  transform: translateX(4px);
}
.cta-contact-item i {
  font-size: 1.3rem;
  color: var(--green-l);
  width: 24px;
  text-align: center;
}
.cta-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cta-contact-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.cta-contact-item span {
  font-size: 0.76rem;
  color: var(--gray-3);
}

/* Form box */
.cta-form-box {
  background: rgba(20,23,16,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(78,88,64,.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.cta-form-box h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.cta-form-box > p {
  font-size: 0.82rem;
  color: var(--gray-3);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gray-4);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(168,176,152,.4); }
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(78,88,64,.5);
  background: rgba(255,255,255,.07);
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.84rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
  line-height: 1.5;
}
.form-feedback.success {
  display: block;
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.2);
  color: #4ade80;
}
.form-feedback.error {
  display: block;
  background: rgba(248,113,113,.07);
  border: 1px solid rgba(248,113,113,.2);
  color: #f87171;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--black); }
.footer-body {
  padding: 88px 0 68px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 52px;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
}
.footer-brand > p {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.72;
  margin-bottom: 6px;
}
.footer-slogan {
  font-size: 0.74rem !important;
  color: var(--green-xl) !important;
  letter-spacing: 0.3px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--t);
}
.footer-social a:hover {
  background: rgba(78,88,64,.2);
  border-color: rgba(78,88,64,.4);
  color: var(--green-pale);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-l);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--gray-3);
  text-decoration: none;
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--green-pale); }

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--gray-3);
}
.footer-contact ul li i {
  color: var(--green-l);
  width: 14px;
  text-align: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.footer-contact ul a {
  color: var(--gray-3) !important;
  text-decoration: none !important;
  transition: color var(--t) !important;
}
.footer-contact ul a:hover { color: var(--green-pale) !important; }
.footer-contact ul span { color: var(--gray-3); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.74rem;
  color: var(--gray-1);
  letter-spacing: 0.1px;
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 13px 22px 13px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,.42);
  transition: all var(--t);
  letter-spacing: 0.1px;
}
.wa-float i { font-size: 1.35rem; }
.wa-float:hover {
  background: #1da854;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37,211,102,.3);
  animation: waPulse 2.8s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ================================================================
   INNER PAGES — Shared
   ================================================================ */
.page-hero {
  background: var(--dark);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(78,88,64,.12) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.page-hero .eyebrow { display: block; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(221,227,212,.65);
  line-height: 1.8;
  max-width: 560px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.2) saturate(.6);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,16,12,.95) 40%, rgba(14,16,12,.5) 100%);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.76rem;
  color: var(--gray-3);
}
.breadcrumb a {
  color: var(--gray-3);
  text-decoration: none;
  transition: color var(--t);
}
.breadcrumb a:hover { color: var(--green-pale); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb span { color: var(--green-l); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .navbar-nav { display: none; }
  .nav-toggle { display: flex; }
  .navbar-actions .nav-cta { display: none; }
  .navbar-inner { gap: 20px; }

  .hero-pillars { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .pillar-sep { display: none; }
  .pillar-cta { grid-column: 1 / -1; }

  .sobre-grid { grid-template-columns: 1fr; gap: 52px; }
  .sobre-img-wrap img { height: 420px; }
  .sobre-badge { display: none; }

  .diferencial-grid { grid-template-columns: 1fr; gap: 52px; }
  .diferencial-left { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .section-sobre,
  .section-areas,
  .section-diferencial,
  .section-socios,
  .section-cta { padding: 80px 0; }

  .area-panel.active { grid-template-columns: 1fr; }
  .area-panel-img { height: 280px; border-left: none; border-top: 3px solid var(--dark-4); }
  .area-panel-text { padding: 40px 0 0; }

  .socios-grid { grid-template-columns: 1fr; }
  .socio-card { grid-template-columns: 180px 1fr; }

  .cta-grid { grid-template-columns: 1fr; gap: 52px; }

  .galeria-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gal-item { height: 220px; }
}

@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; height: 66px; }
  .navbar-logo img { height: 38px; }

  .hero { height: auto; min-height: 92vh; }
  .hero-content { padding: 40px 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-pillars { display: none; }
  .hero-dots { bottom: 16px; right: 20px; }

  .numeros-grid { flex-wrap: wrap; }
  .numero-box { flex: calc(50% - 1px); min-width: 140px; }
  .numero-sep { display: none; }
  .numero-box:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.07); }

  .sobre-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .stat-item:last-child { border-bottom: none; }

  .socio-card { grid-template-columns: 1fr; }
  .socio-foto { height: 240px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .wa-float span { display: none; }
  .wa-float { padding: 15px; border-radius: 50%; }

  .galeria-strip { grid-template-columns: 1fr; }
  .gal-item { height: 200px; }

  h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .numero-box { flex: 100%; }
}

/* ================================================================
   MOBILE MENU OVERLAY
   ================================================================ */
@media (max-width: 1200px) {
  .navbar-nav.open {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,10,6,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    gap: 4px;
    animation: menuFadeIn .25s ease;
  }
  @keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .navbar-nav.open .nav-menu {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .navbar-nav.open .nav-link {
    font-size: 1.3rem;
    font-family: var(--serif);
    padding: 14px 40px;
    justify-content: center;
  }
  .navbar-nav.open .nav-arrow { display: none; }
  .navbar-nav.open .nav-submenu,
  .navbar-nav.open .nav-mega { display: none !important; }
  .nav-toggle { display: flex; position: relative; z-index: 1003; }
}

/* ================================================================
   UTILITÁRIOS
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
