/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  --creme:          #FAFAF7;
  --linho:          #F0E8DF;
  --verde-floresta: #3C4A35;
  --verde-medio:    #5A6B4F;
  --verde-sage:     #C8DAC0;
  --terracota:      #8A5A38;
  --terracota-claro:#C4956A;
  --texto:          #2A2A25;
  --texto-suave:    #6B6358;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Mundial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   @FONT-FACE — Mundial self-hosted OTF
   ============================================================ */
@font-face {
  font-family: 'Mundial';
  src: url('../fonts/mundial-light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mundial';
  src: url('../fonts/mundial-regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mundial';
  src: url('../fonts/mundial-demibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ============================================================
   TIPOGRAFIA BASE
   ============================================================ */
h1, h2, h3 { font-family: 'Italiana', serif; font-weight: 400; letter-spacing: 0.02em; line-height: 1.2; }
h1 { font-size: clamp(52px, 7.5vw, 96px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p  { font-family: 'Mundial', sans-serif; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1440px; margin: 0 auto; padding-inline: 48px; }

/* ============================================================
   SEPARADOR ◆ (usado via elemento SVG inline nas seções)
   ============================================================ */
.diamante-separador {
  display: block;
  margin-block: 16px;
  color: var(--terracota-claro);
}

/* ============================================================
   SKIP-LINK (WCAG 2.4.1 — primeiro filho de body)
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--verde-floresta);
  color: var(--creme);
  font-family: 'Mundial', sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================================
   FOCO VISÍVEL (WCAG 2.4.7)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--verde-floresta);
  outline-offset: 3px;
  border-radius: 2px;
}
#cuidado :focus-visible,
#jornada :focus-visible,
#aurum :focus-visible,
footer :focus-visible,
#cta-final :focus-visible { outline-color: var(--creme); }
header.header-scrolled :focus-visible { outline-color: var(--creme); }

/* ============================================================
   CURSOR PERSONALIZADO
   ============================================================ */
#cursor {
  position: fixed;
  width: 14px; height: 14px;
  color: var(--terracota-claro);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
  display: none;
}
#cursor svg { width: 100%; height: 100%; }
#cursor.cursor-hover { width: 26px; height: 26px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--terracota);
  z-index: 9998;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding-block: 20px;
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, padding 0.3s ease;
}
header.header-scrolled {
  background: var(--verde-floresta);
  padding-block: 14px;
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.logo-nome {
  font-family: 'Italiana', serif;
  font-size: 26px;
  color: var(--verde-floresta);
  -webkit-text-fill-color: var(--verde-floresta);
  transition: none;
}
header.header-scrolled .logo-nome {
  background: linear-gradient(90deg, var(--terracota-claro) 0%, #E8BF78 35%, #F2D898 50%, #E8BF78 65%, var(--terracota-claro) 100%);
  background-size: 300% 100%;
  background-position: 200% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-logo 14s ease-in-out infinite;
  animation-delay: 4.6s;
}
@keyframes shimmer-logo {
  0%, 18%  { background-position: 200% center; }
  50%      { background-position: -100% center; }
  65%, 100%{ background-position: 200% center; }
}

/* Nav único — cor verde-floresta com text-shadow sutil para legibilidade sobre o verde do hero */
.nav-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-claro { display: none; }
.nav-escuro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-escuro ul { display: flex; gap: 28px; }
.nav-escuro a {
  font-family: 'Mundial', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--verde-floresta);
  text-decoration: none;
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(250, 250, 247, 0.55);
}
header.header-scrolled .nav-escuro { position: static; }
header.header-scrolled .nav-escuro a { color: var(--creme); text-shadow: none; }

/* placeholder: ocultar — mantido no HTML para compatibilidade com páginas LGPD */
.nav-placeholder { display: none; }

.btn-header-cta {
  font-family: 'Mundial', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 10px 20px;
  background: var(--verde-floresta);
  color: var(--creme);
  border: 1px solid var(--verde-floresta);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
header.header-scrolled .btn-header-cta {
  background: transparent;
  border-color: var(--creme);
  color: var(--creme);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--verde-floresta);
  transition: background 0.3s;
}
header.header-scrolled .hamburger span { background: var(--creme); }

/* ============================================================
   DRAWER MOBILE
   ============================================================ */
#drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--verde-floresta);
  z-index: 300;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#drawer.drawer-aberto { transform: translateX(0); }
#drawer > ul { display: flex; flex-direction: column; gap: 20px; }
#drawer > ul a {
  font-family: 'Italiana', serif;
  font-size: 24px;
  color: var(--creme);
  text-decoration: none;
}
.drawer-fechar {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--creme);
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-drawer-cta {
  font-family: 'Mundial', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 24px;
  background: var(--terracota);
  color: var(--creme);
  text-decoration: none;
  text-align: center;
}
#drawer-backdrop { display: none; }
#drawer-backdrop.ativo {
  display: block;
  position: fixed; inset: 0;
  background: rgba(42,42,37,0.5);
  z-index: 99;
}

/* ============================================================
   BOTÕES GLOBAIS
   ============================================================ */
.btn-primario {
  display: inline-block;
  font-family: 'Mundial', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  background: var(--verde-floresta);
  color: var(--creme);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primario:hover { background: var(--verde-medio); }
.btn-secundario {
  display: inline-block;
  font-family: 'Mundial', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border: 1px solid var(--verde-floresta);
  color: var(--verde-floresta);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-secundario:hover { background: var(--verde-floresta); color: var(--creme); }
.btn-whatsapp {
  display: inline-block;
  font-family: 'Mundial', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 36px;
  background: var(--terracota);
  color: var(--creme);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #7a4e30; }

/* ============================================================
   FOLHA DECORATIVA HERO (leaf-tl)
   ============================================================ */
.leaf-tl {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 160px;
  color: var(--verde-sage);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   SEÇÃO HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45fr 55fr;
  overflow: hidden;
}
.hero-lado-creme {
  background: var(--creme);
  display: flex;
  align-items: center;
  padding: 200px 60px 80px 80px;
  position: relative;
}
.hero-lado-verde {
  background: var(--verde-floresta);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero h1 {
  color: var(--verde-floresta);
  margin-bottom: 24px;
  font-size: clamp(40px, 5.5vw, 72px);
}
.hero-subtitulo {
  font-family: 'Mundial', sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  color: var(--texto-suave);
  margin-bottom: 16px;
  line-height: 1.7;
}
.hero-apoio {
  font-size: 15px;
  color: var(--texto-suave);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dra-png {
  position: absolute;
  bottom: -18px;
  left: 50%;
  /* transform: translateX(-50%) removido — GSAP gerencia xPercent:-50 para centering responsivo */
  /* bottom: -18px compensa o float GSAP (y: -18): ao flutuar para cima, a foto alinha com o container */
  height: min(92%, 820px);
  max-height: clamp(820px, 85vh, 1050px);
  width: auto;
  object-fit: contain;
  z-index: 2;
}
.hero-diamante {
  position: absolute;
  color: var(--terracota-claro);
  pointer-events: none;
  z-index: 3;
}
.hero-diamante:nth-child(1) { top: 20%; left: 15%; }
.hero-diamante:nth-child(2) { top: 35%; left: 65%; }
.hero-diamante:nth-child(3) { top: 55%; left: 25%; }
.hero-diamante:nth-child(4) { top: 70%; left: 75%; }
.hero-diamante:nth-child(5) { top: 15%; left: 80%; }
.hero-diamante:nth-child(6) { top: 80%; left: 40%; }

/* 7º losango: position:fixed para viajar por todo o viewport */
.hero-diamante-vida {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  color: var(--terracota-claro);
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}

/* Shimmer dourado em "vida" quando o losango pousa */
.vida-iluminada {
  background: linear-gradient(
    90deg,
    var(--terracota-claro) 0%,
    #E8BF78 35%,
    #F2D898 50%,
    #E8BF78 65%,
    var(--terracota-claro) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-vida 1.8s ease forwards;
}
@keyframes shimmer-vida {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */
#sobre {
  padding-block: 100px;
  background: var(--creme);
  position: relative;
  overflow: hidden;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-foto { position: relative; }
.sobre-foto img {
  width: 100%;
  display: block;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  transition: border-radius 0.8s ease;
}
.sobre-foto img:hover {
  border-radius: 40% 60% 54% 46% / 44% 56% 44% 56%;
}
#sobre h2 { color: var(--verde-floresta); margin-bottom: 24px; }
.sobre-separador { color: var(--terracota-claro); display: block; margin-bottom: 20px; }
.sobre-texto p {
  font-size: 16px;
  color: var(--texto);
  line-height: 1.75;
  margin-bottom: 16px;
}
.sobre-selos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.sobre-selos .selo {
  font-family: 'Mundial', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  border-left: 2px solid var(--terracota-claro);
  padding-left: 12px;
}
.sobre-contadores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.contador-item { display: flex; flex-direction: column; gap: 4px; }
.counter {
  font-family: 'Italiana', serif;
  font-size: 64px;
  color: var(--verde-floresta);
  line-height: 1;
}
.counter-static {
  font-family: 'Italiana', serif;
  font-size: 40px;
  color: var(--verde-floresta);
  line-height: 1;
}
.contador-label {
  font-family: 'Mundial', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
}

/* ============================================================
   SEÇÃO CONSULTA
   ============================================================ */
#consulta {
  padding-block: 100px;
  background: var(--linho);
  position: relative;
}
.consulta-header {
  text-align: center;
  margin-bottom: 60px;
}
#consulta h2 { color: var(--verde-floresta); margin-bottom: 16px; }
.consulta-separador { color: var(--terracota-claro); display: inline-block; margin-bottom: 16px; }
.consulta-header .subtitulo {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  color: var(--texto-suave);
}
.consulta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 800px;
}
.card-consulta {
  background: var(--creme);
  border-left: 2px solid var(--terracota-claro);
  padding: 24px;
  position: relative;
  transition: border-left-color 0.2s, transform 0.2s, box-shadow 0.2s;
  transform-style: preserve-3d;
}
.card-consulta:hover {
  border-left-color: var(--verde-floresta);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(60,74,53,0.1);
}
.card-consulta .card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Italiana', serif;
  font-size: 32px;
  color: var(--terracota-claro);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 0;
}
.card-consulta h3 {
  font-size: 16px;
  font-family: 'Mundial', sans-serif;
  font-weight: 600;
  color: var(--verde-floresta);
  margin-bottom: 8px;
}
.card-consulta p { font-size: 14px; font-weight: 300; color: var(--texto-suave); }
.consulta-citacao {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--verde-floresta);
  text-align: center;
  margin-top: 60px;
}

/* ============================================================
   SEÇÃO CUIDADO INTEGRAL
   ============================================================ */
#cuidado {
  padding-block: 100px;
  background: var(--verde-floresta);
  position: relative;
  overflow: hidden;
}
#cuidado h2 { color: var(--creme); margin-bottom: 16px; }
.cuidado-header { text-align: center; margin-bottom: 60px; }
.cuidado-separador { color: var(--terracota-claro); display: inline-block; margin-bottom: 16px; }
.cuidado-header .subtitulo {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  color: var(--creme);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pilar { text-align: center; }
.pilar-num {
  font-family: 'Italiana', serif;
  font-size: 56px;
  color: var(--terracota-claro);
  line-height: 1;
  margin-bottom: 12px;
}
.pilar h3 { color: var(--creme); margin-bottom: 12px; }
.pilar p { font-size: 15px; font-weight: 300; color: var(--verde-sage); line-height: 1.7; }

/* ============================================================
   SEÇÃO PARA QUEM É
   ============================================================ */
#para-quem {
  padding-block: 100px;
  background: var(--creme);
  position: relative;
}
.para-quem-header { text-align: center; margin-bottom: 48px; }
#para-quem h2 { color: var(--verde-floresta); margin-bottom: 16px; }
.para-quem-separador { color: var(--terracota-claro); display: inline-block; }
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  perspective: 800px;
}
.card-para-quem {
  background: var(--linho);
  border-left: 2px solid var(--terracota-claro);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--texto);
  transform-style: preserve-3d;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-para-quem:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(60,74,53,0.08);
}
.para-quem-bullet { color: var(--terracota-claro); flex-shrink: 0; }

/* ============================================================
   SEÇÃO DIFERENCIAIS
   ============================================================ */
#diferenciais {
  padding-block: 100px;
  background: var(--linho);
  position: relative;
  overflow: hidden;
}
#diferenciais h2 { color: var(--verde-floresta); margin-bottom: 16px; }
.diferenciais-header { margin-bottom: 60px; }
.diferenciais-separador { color: var(--terracota-claro); display: block; margin-bottom: 16px; }
.numeral-bg {
  position: absolute;
  font-family: 'Italiana', serif;
  font-size: 280px;
  color: var(--verde-floresta);
  opacity: 0.05;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.diferenciais-lista { position: relative; z-index: 1; }
.diferencial-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-block: 24px;
  border-bottom: 1px solid rgba(196,149,106,0.25);
}
.diferencial-item:last-child { border-bottom: none; }
.diferencial-num {
  font-family: 'Italiana', serif;
  font-size: 44px;
  color: var(--terracota-claro);
  line-height: 1;
}
.diferencial-item h3 { font-size: 22px; color: var(--verde-floresta); margin-bottom: 8px; }
.diferencial-item p { font-size: 15px; font-weight: 300; color: var(--texto-suave); line-height: 1.7; }

/* ============================================================
   SEÇÃO JORNADA — SCROLLYTELLING
   ============================================================ */
#jornada {
  background: var(--verde-floresta);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.jornada-pinado {
  display: grid;
  grid-template-columns: 3fr 2fr;
  width: 100%;
  align-items: start;
  padding: 80px 60px;
  gap: 60px;
}
#jornada h2 { color: var(--terracota-claro); margin-bottom: 16px; }
.jornada-esquerda { position: relative; }
.jornada-header-fixo { margin-bottom: 28px; }
.jornada-sub { color: var(--verde-sage); font-weight: 300; line-height: 1.6; }
.jornada-steps-box { position: relative; min-height: 210px; margin-bottom: 28px; }
.jornada-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}
.jornada-step.ativo { opacity: 1; transform: translateY(0); z-index: 1; }
.jornada-num-bg {
  font-family: 'Italiana', serif;
  font-size: 160px;
  color: var(--verde-floresta);
  opacity: 0.08;
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.jornada-step h3 {
  font-family: 'Italiana', serif;
  font-size: 36px;
  color: var(--creme);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.jornada-step p {
  font-size: 16px;
  font-weight: 300;
  color: var(--verde-sage);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.jornada-direita {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 152px;
}
/* Caixa de ícones por etapa */
.step-icons-box {
  position: relative;
  width: 200px;
  height: 200px;
}
.step-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.step-icon svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 0 20px rgba(232,191,120,0.22));
}

/* Stepper de progresso numerado */
.jornada-stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
.stepper-track {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(200,218,192,0.18);
  z-index: 0;
  border-radius: 1px;
}
.stepper-fill {
  height: 100%;
  width: 0%;
  background: var(--terracota-claro);
  border-radius: 1px;
  transition: width 0.35s ease;
}
.stepper-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Italiana', serif;
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--verde-floresta);
  color: rgba(200,218,192,0.35);
  cursor: default;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.stepper-num.ativo {
  color: var(--verde-floresta);
  background: var(--terracota-claro);
}
.stepper-num.visitado {
  color: var(--terracota-claro);
  background: transparent;
  box-shadow: 0 0 0 1.5px var(--terracota-claro);
}

/* Jornada mobile: lista linear */
.jornada-mobile { display: none; }
.jornada-mobile-item {
  padding-block: 18px;
  border-left: 2px solid rgba(200,218,192,0.2);
  padding-left: 20px;
  position: relative;
}
.jornada-mobile-marker {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terracota);
  color: var(--creme);
  font-family: 'Italiana', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -17px;
  top: 18px;
}
.jornada-mobile h3 { color: var(--creme); font-size: 18px; margin-bottom: 6px; }
.jornada-mobile p { color: var(--verde-sage); font-size: 14px; font-weight: 300; line-height: 1.65; }

/* ============================================================
   SEÇÃO AURUM
   ============================================================ */
#aurum {
  padding-block: 100px;
  background: var(--terracota);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.aurum-inner { max-width: 900px; margin: 0 auto; }
.aurum-losango {
  display: block;
  margin: 0 auto 32px;
  color: var(--creme);
}
#aurum h2 {
  font-family: 'Italiana', serif;
  font-size: 72px;
  color: var(--creme);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
#aurum p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,250,247,0.85);
  line-height: 1.75;
  margin-bottom: 36px;
}
.aurum-beneficios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 48px;
  text-align: left;
}
.aurum-beneficio {
  padding: 28px 24px;
  border: 1px solid rgba(250,250,247,0.18);
  border-radius: 8px;
  background: rgba(0,0,0,0.08);
}
.aurum-beneficio svg {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--creme);
  opacity: 0.9;
}
.aurum-beneficio h3 {
  font-family: 'Italiana', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.aurum-beneficio p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,250,247,0.72);
  line-height: 1.65;
  margin-bottom: 0;
}
.aurum-link {
  font-family: 'Mundial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--creme);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================================
   SEÇÃO FAQ
   ============================================================ */
#duvidas {
  padding-block: 100px;
  background: var(--creme);
}
.faq-header { text-align: center; margin-bottom: 60px; }
#duvidas h2 { color: var(--verde-floresta); margin-bottom: 16px; }
.faq-separador { color: var(--terracota-claro); display: inline-block; }
.faq-lista { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(196,149,106,0.25); }
.faq-item:first-child { border-top: 1px solid rgba(196,149,106,0.25); }
.faq-titulo {
  font-family: 'Italiana', serif;
  font-size: 16px;
  font-weight: 400;
  clip: rect(0,0,0,0);
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-pergunta {
  font-family: 'Mundial', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--verde-floresta);
  flex: 1;
}
.faq-icone {
  display: inline-block;
  color: var(--terracota-claro);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-btn[aria-expanded="true"] .faq-icone { transform: rotate(45deg); }
.faq-resposta p { font-size: 15px; color: var(--texto-suave); line-height: 1.75; padding-bottom: 20px; }

/* ============================================================
   SEÇÃO CTA FINAL
   ============================================================ */
#cta-final {
  padding-block: 100px;
  background: var(--verde-floresta);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final h2 { color: var(--creme); margin-bottom: 16px; }
.cta-final-separador { color: var(--terracota-claro); display: inline-block; margin-bottom: 16px; }
#cta-final p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,250,247,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #222820;
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col-titulo {
  font-family: 'Italiana', serif;
  font-size: 18px;
  color: var(--creme);
  margin-bottom: 16px;
}
.footer-col p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--linho);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-col a {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--linho);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracota-claro); }
.footer-col .footer-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-icon {
  flex-shrink: 0;
  color: var(--terracota-claro);
  opacity: 0.75;
  margin-top: 2px;
}
.footer-endereco {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,232,223,0.4);
  line-height: 1.55;
  margin-top: 2px;
  margin-left: 22px;
}
.footer-divider {
  height: 1px;
  background: rgba(240,232,223,0.15);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.footer-aviso, .footer-copy {
  font-family: 'Mundial', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,232,223,0.5);
}

/* ============================================================
   FOLHAS SVG — posicionamento base (cores em animations.css)
   ============================================================ */
.secao-relativa { position: relative; overflow: hidden; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* ≤1024px: grid consulta 2 colunas */
@media (max-width: 1024px) {
  .consulta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ≤900px: hamburger aparece, nav some, hero empilha */
@media (max-width: 900px) {
  .nav-wrapper, .btn-header-cta { display: none; }
  .hamburger { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-lado-verde {
    order: -1;
    min-height: 50vh;
  }
  .hero-lado-creme {
    padding: 60px 32px 60px;
  }
  .hero-dra-png {
    height: 80%;
    max-height: 440px;
  }

  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-foto { order: -1; }
}

/* ≤768px: scrollytelling → mobile, grids 1 coluna */
@media (max-width: 768px) {
  .container { padding-inline: 24px; }

  .jornada-pinado { display: none !important; }
  .jornada-mobile { display: block !important; padding-block: 80px; }

  .consulta-grid { grid-template-columns: 1fr; }
  .para-quem-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .sobre-contadores { grid-template-columns: repeat(2, 1fr); }

  #aurum h2 { font-size: 52px; }
  .aurum-beneficios { grid-template-columns: 1fr; gap: 16px; }
  #cta-final p { font-size: 16px; }

  footer { padding-block: 40px 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .footer-col-titulo { font-size: 15px; margin-bottom: 10px; }
  .footer-col p, .footer-col a { font-size: 13px; margin-bottom: 3px; }
}

/* ≤540px: botões hero full-width */
@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; text-align: center; }
  .sobre-contadores { grid-template-columns: 1fr; }
}

/* ≤374px: padding mínimo, fontes base */
@media (max-width: 374px) {
  .container { padding-inline: 16px; }
  body { font-size: 15px; }
  .btn-primario, .btn-secundario, .btn-whatsapp { width: 100%; text-align: center; }
}

/* ≥1600px: padding maior para telas 2K */
@media (min-width: 1600px) {
  .container, .header-inner { padding-inline: 80px; }
}
