/* ===================== TOKENS ===================== */
:root {
  --verde-escuro: #1B4332;
  --verde-profundo: #0F2A1E;
  --verde: #2D6A4F;
  --verde-oliva: #8A9A3D;
  --dourado: #C9A84C;
  --dourado-claro: #E3C97A;
  --fundo: #FBFAF6;
  --fundo-claro: #F3F1E9;
  --texto: #16201B;
  --texto-suave: #515E58;
  --borda: #E5E2D6;
  --branco: #FFFFFF;
  --creme: #F6F3E9;
  --sombra-sm: 0 1px 2px rgba(15, 42, 30, 0.05), 0 6px 16px -10px rgba(15, 42, 30, 0.18);
  --sombra: 0 2px 4px rgba(15, 42, 30, 0.05), 0 16px 40px -18px rgba(15, 42, 30, 0.22);
  --sombra-forte: 0 30px 70px -28px rgba(15, 42, 30, 0.42);
  --raio: 20px;
  --z-flutuante: 60;
  --z-topo: 50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--fundo);
  color: var(--texto);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .preco-titulo {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1.2;
  transition: transform 0.22s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:active { transform: translateY(0) scale(0.99); }

.btn-dourado {
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  color: #2A2410;
  box-shadow: 0 14px 32px -12px rgba(201, 168, 76, 0.7);
}
.btn-dourado:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(201, 168, 76, 0.8); }

.btn-escuro {
  background: var(--verde-escuro);
  color: var(--branco);
  box-shadow: 0 12px 28px -14px rgba(15, 42, 30, 0.7);
}
.btn-escuro:hover { background: var(--verde); transform: translateY(-2px); }

.btn-claro {
  background: rgba(255, 255, 255, 0.06);
  color: var(--branco);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-claro:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }

.btn-bloco { width: 100%; }

/* ===================== HEADER ===================== */
.topo {
  position: sticky;
  top: 0;
  z-index: var(--z-topo);
  background: rgba(251, 250, 246, 0.80);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.topo.scrolled {
  border-bottom-color: var(--borda);
  box-shadow: 0 10px 30px -22px rgba(15, 42, 30, 0.5);
  background: rgba(251, 250, 246, 0.94);
}
.topo-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.topo-logo { display: inline-flex; transition: opacity 0.2s ease; }
.topo-logo:hover { opacity: 0.85; }
.topo-logo img { height: 56px; width: auto; }
.topo-nav { display: flex; gap: 32px; margin-left: auto; }
.topo-nav a {
  position: relative;
  color: var(--texto); text-decoration: none; font-weight: 500; font-size: 0.96rem;
  transition: color 0.2s;
}
.topo-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--dourado); transition: width 0.25s ease;
}
.topo-nav a:hover { color: var(--verde); }
.topo-nav a:hover::after { width: 100%; }
.topo-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--verde-escuro); border: 1px solid var(--borda);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.topo-social:hover { background: var(--verde-escuro); color: var(--branco); border-color: var(--verde-escuro); transform: translateY(-2px); }
.topo-social svg { width: 20px; height: 20px; }
.btn-topo { padding: 12px 24px; font-size: 0.92rem; }

/* ===================== HERO (ESCURO) ===================== */
.hero {
  position: relative;
  padding: 92px 0 100px;
  color: #F4F1E7;
  background:
    radial-gradient(50rem 42rem at 88% -8%, rgba(201, 168, 76, 0.20), transparent 58%),
    radial-gradient(44rem 40rem at -8% 108%, rgba(45, 106, 79, 0.45), transparent 60%),
    linear-gradient(158deg, #0E2A1D 0%, #143420 52%, #1B4332 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(58rem 40rem at 50% 28%, #000, transparent 78%);
          mask-image: radial-gradient(58rem 40rem at 50% 28%, #000, transparent 78%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 48px;
}
/* Em telas largas o hero estende para a direita (esquerda alinhada às seções) */
@media (min-width: 1100px) {
  .hero .hero-grid {
    max-width: none;
    grid-template-columns: 1fr 1.25fr;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: clamp(24px, 2.5vw, 72px);
    gap: clamp(40px, 4vw, 80px);
  }
  .hero .hero-visual { justify-content: flex-end; }
  .hero .caminho { width: min(780px, 100%); }
}
.selo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dourado-claro);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.28);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.selo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dourado); box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.22); }
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  color: #F8F5EC;
}
.hero h1 .destaque {
  display: inline-block; margin-top: 6px;
  color: var(--dourado-claro);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  color: rgba(244, 241, 231, 0.80);
  margin-top: 24px; max-width: 560px; line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; }
.hero-trust span { font-size: 0.92rem; font-weight: 500; color: rgba(244, 241, 231, 0.88); }

/* Assinatura: Caminho 81 */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.caminho { width: min(600px, 100%); height: auto; display: block; overflow: visible; }
.caminho .lb { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; fill: #F4F1E7; }
.caminho .lb-leak { font-size: 12px; font-weight: 600; fill: #E3A98F; letter-spacing: 0.02em; }
.caminho .lb-fim { font-size: 15px; font-weight: 700; fill: #E3C97A; }

/* ===================== SEÇÕES BASE ===================== */
.secao { position: relative; padding: 92px 0; }
.secao-clara { background: var(--fundo-claro); }
.secao-verde {
  color: #F4F1E7;
  overflow: hidden;
  background:
    radial-gradient(44rem 38rem at 90% 0%, rgba(201, 168, 76, 0.16), transparent 60%),
    linear-gradient(160deg, #0F2A1D, #1B4332);
}

.rotulo {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dourado); margin-bottom: 16px;
}
.rotulo::before { content: ""; width: 26px; height: 2px; background: var(--dourado); border-radius: 2px; }
.texto-centro .rotulo { justify-content: center; }
.rotulo-claro { color: var(--dourado-claro); }
.rotulo-alerta { color: #C77A5F; }
.rotulo-alerta::before { background: #C77A5F; }

.secao h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--verde-escuro);
  max-width: 800px;
}
.titulo-claro { color: #F8F5EC !important; }
.texto-grande { font-family: 'Inter', sans-serif; font-size: 1.14rem; color: var(--texto-suave); margin-top: 18px; max-width: 740px; line-height: 1.7; }
.secao-verde .texto-grande { color: rgba(244, 241, 231, 0.82); }
.texto-centro { margin-left: auto; margin-right: auto; text-align: center; }
.texto-centro.texto-grande { margin-top: 18px; }

/* arco decorativo no topo da seção verde */
.arco-topo {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 130%; height: 64px;
  background: var(--fundo-claro);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}
#diagnostico .container { position: relative; z-index: 2; }

/* ===================== FAIXA DE NICHO (CLARA) ===================== */
.nicho-strip {
  background: var(--branco);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  padding: 22px 0;
}
.nicho-inner { display: flex; align-items: center; justify-content: center; gap: 12px 24px; flex-wrap: wrap; }
.nicho-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dourado); }
.nicho-itens { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nicho-itens span:not(.nicho-sep) { font-weight: 600; font-size: 1.02rem; color: var(--verde-escuro); }
.nicho-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--dourado); }

/* ===================== PROBLEMA ===================== */
.caminho-perda { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; margin-top: 34px; }
.passo-perda {
  flex: 1; min-width: 150px;
  display: flex; align-items: center; gap: 12px;
  background: var(--branco); border: 1px solid var(--borda);
  border-radius: 16px; padding: 18px 18px; box-shadow: var(--sombra-sm);
}
.passo-perda-n {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--verde-escuro); color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; font-family: 'Inter', sans-serif;
}
.passo-perda p { font-size: 0.96rem; }
.passo-perda-fim { background: rgba(199, 122, 95, 0.08); border-color: rgba(199, 122, 95, 0.32); }
.passo-perda-fim .passo-perda-n { background: #C77A5F; }
.seta-perda { display: flex; align-items: center; color: var(--dourado); font-weight: 700; font-size: 1.2rem; }
.frase-base {
  margin-top: 36px; font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem); font-weight: 600; color: var(--verde-escuro);
  max-width: 760px; line-height: 1.34;
}

/* ===================== PÍLULAS ===================== */
.pilulas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pilulas span {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--branco); border: 1px solid var(--borda); border-radius: 999px;
  padding: 11px 22px; font-weight: 500; font-size: 0.96rem; color: var(--verde-escuro);
  box-shadow: var(--sombra-sm);
}
.pilulas svg { width: 18px; height: 18px; fill: none; stroke: var(--verde); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ===================== CARDS SEQUÊNCIA ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 44px; }
.card {
  position: relative;
  background: var(--branco); border: 1px solid var(--borda); border-radius: var(--raio);
  padding: 32px 28px; box-shadow: var(--sombra-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--dourado-claro), var(--dourado));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sombra-forte); border-color: rgba(201, 168, 76, 0.4); }
.card:hover::after { transform: scaleX(1); }
.card-icone {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: 0 10px 22px -12px rgba(15, 42, 30, 0.6);
}
.card-icone svg { width: 27px; height: 27px; fill: none; stroke: var(--dourado-claro); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card-num { position: absolute; top: 30px; right: 28px; font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: rgba(201, 168, 76, 0.5); }
.card h3 { font-size: 1.42rem; color: var(--verde-escuro); margin-bottom: 12px; }
.card-pergunta { font-weight: 600; color: var(--texto); margin-bottom: 14px; }
.card-perda, .card-ajuste { font-size: 0.91rem; color: var(--texto-suave); margin-top: 8px; }
.card-perda strong { color: #C77A5F; }
.card-ajuste strong { color: var(--verde); }

/* ===================== DIAGNÓSTICO (ESCURO) ===================== */
.diag-intro { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.32rem; color: var(--dourado-claro); margin-top: 16px; font-weight: 500; max-width: 660px; }
.diag-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-top: 44px; align-items: start; }
.diag-label { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 18px; color: var(--dourado-claro); }
.lista-check { list-style: none; display: grid; gap: 13px; }
.lista-check li { position: relative; padding-left: 32px; color: rgba(244, 241, 231, 0.92); }
.lista-check li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 9px;
  border-left: 2px solid var(--dourado); border-bottom: 2px solid var(--dourado);
  transform: rotate(-45deg);
}
.diag-preco {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(227, 201, 122, 0.38); border-radius: var(--raio); padding: 34px 30px;
  box-shadow: var(--sombra-forte);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.diag-preco-icone {
  width: 66px; height: 66px; border-radius: 17px; background: rgba(227, 201, 122, 0.14);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.diag-preco-icone img { width: 70%; }
.preco-label { font-family: 'Inter', sans-serif; text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.14em; color: var(--dourado-claro); font-weight: 600; }
.preco-titulo { font-size: 2rem; color: #F8F5EC; margin: 6px 0 16px; }
.preco-condicao { font-size: 0.95rem; color: rgba(244, 241, 231, 0.82); margin-bottom: 26px; line-height: 1.6; }
.preco-condicao strong { color: var(--dourado-claro); }

/* ===================== PASSOS ===================== */
.passos { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; margin-top: 44px; }
.passo { background: var(--branco); border: 1px solid var(--borda); border-radius: 16px; padding: 26px 22px; box-shadow: var(--sombra-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.passo:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.passo-num {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde)); color: var(--dourado-claro);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 16px;
}
.passo p { font-weight: 500; color: var(--texto); }

/* ===================== PLANOS ===================== */
.planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; margin-top: 46px; }
.plano { position: relative; background: var(--branco); border: 1px solid var(--borda); border-radius: var(--raio); padding: 36px 32px; box-shadow: var(--sombra-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.plano:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.plano-destaque { border: 1.5px solid var(--dourado); box-shadow: var(--sombra); }
.plano-tag {
  position: absolute; top: -14px; left: 32px; background: linear-gradient(135deg, var(--dourado-claro), var(--dourado)); color: #2A2410;
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
}
.plano h3 { font-size: 1.7rem; color: var(--verde-escuro); }
.plano-funcao { font-weight: 600; color: var(--texto); margin: 8px 0 12px; }
.plano-desc { color: var(--texto-suave); font-size: 0.95rem; margin-bottom: 20px; }
.lista-mini { list-style: none; display: grid; gap: 12px; }
.lista-mini li { position: relative; padding-left: 28px; font-size: 0.93rem; color: var(--texto); }
.lista-mini li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 8px;
  border-left: 2px solid var(--verde); border-bottom: 2px solid var(--verde); transform: rotate(-45deg);
}
.plano-obs { font-size: 0.86rem; color: var(--texto-suave); margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--borda); }

/* ===================== PARA QUEM ===================== */
.quem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.quem-bloco { background: var(--branco); border: 1px solid var(--borda); border-radius: var(--raio); padding: 32px 30px; box-shadow: var(--sombra-sm); }
.lista-sim, .lista-nao { list-style: none; display: grid; gap: 15px; margin-top: 8px; }
.lista-sim li, .lista-nao li { position: relative; padding-left: 36px; color: var(--texto); font-size: 1.02rem; }
.lista-sim li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; color: var(--verde); font-weight: 700;
  background: rgba(45, 106, 79, 0.12); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.78rem;
}
.lista-nao li::before {
  content: "✕"; position: absolute; left: 0; top: 1px; color: #C77A5F; font-weight: 700;
  background: rgba(199, 122, 95, 0.12); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.74rem;
}

/* ===================== DIFERENCIAIS ===================== */
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; margin-top: 38px; }
.dif {
  display: flex; align-items: center; gap: 14px; background: var(--branco); border: 1px solid var(--borda);
  border-radius: 15px; padding: 20px 24px; font-weight: 500; color: var(--verde-escuro); box-shadow: var(--sombra-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dif:hover { transform: translateY(-3px); box-shadow: var(--sombra); }
.dif span {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde)); color: var(--dourado-claro);
  display: flex; align-items: center; justify-content: center; font-size: 0.82rem;
}

/* ===================== FUNDADOR ===================== */
.fundador-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.fundador-visual { display: flex; justify-content: center; }
.fundador-disco { position: relative; width: min(310px, 84%); aspect-ratio: 1; }
.fundador-disco::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px dashed rgba(201, 168, 76, 0.5);
}
.fundador-disco > img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; box-shadow: var(--sombra-forte);
}
.fundador-inset {
  position: absolute; z-index: 2; right: -6px; bottom: 6px;
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  border: 5px solid var(--fundo-claro); overflow: hidden; box-shadow: var(--sombra-forte);
}
.fundador-inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fundador-nota {
  margin-top: 20px; padding: 20px 24px; border-left: 3px solid var(--dourado);
  background: var(--branco); border-radius: 0 14px 14px 0; color: var(--texto); font-size: 0.99rem; box-shadow: var(--sombra-sm);
}

/* ===================== CTA FINAL (ESCURO) ===================== */
.cta-final { text-align: center; }
.cta-final h2 { margin: 0 auto; max-width: 820px; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.cta-final .btn { margin-top: 32px; }
.cta-micro { margin: 24px auto 0; max-width: 600px; font-size: 0.95rem; color: rgba(244, 241, 231, 0.78); }

/* ===================== RODAPÉ ===================== */
.rodape { background: #0C2117; color: #F4F1E7; padding: 56px 0 30px; }
.rodape-top { display: flex; flex-wrap: wrap; align-items: center; gap: 34px; }
.rodape-marca-bloco { display: flex; align-items: center; gap: 16px; }
.rodape-icone { height: 58px; width: auto; }
.rodape-marca { font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: 0.03em; font-size: 1.3rem; }
.rodape-tag { font-size: 0.88rem; color: var(--dourado-claro); font-style: italic; }
.rodape-pilares { margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.rodape-pilares-titulo { width: 100%; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244, 241, 231, 0.5); margin-bottom: 6px; }
.rodape-pilares span { font-size: 0.92rem; font-weight: 500; color: rgba(244, 241, 231, 0.86); }
.rodape-pilares span:not(:last-child)::after { content: "·"; margin-left: 18px; color: var(--dourado); }
.rodape-acao { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.rodape-insta { display: inline-flex; align-items: center; gap: 8px; color: var(--dourado-claro); text-decoration: none; font-weight: 500; font-size: 0.92rem; transition: color 0.2s ease; }
.rodape-insta:hover { color: var(--branco); }
.rodape-insta svg { width: 18px; height: 18px; }
.rodape-copy { text-align: center; font-size: 0.82rem; color: rgba(244, 241, 231, 0.5); margin-top: 38px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-flutuante {
  position: fixed; right: 22px; bottom: 22px; z-index: var(--z-flutuante);
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 14px 20px 14px 16px; border-radius: 999px;
  font-weight: 600; font-size: 0.96rem;
  box-shadow: 0 16px 36px -10px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.25s ease;
}
.whatsapp-flutuante:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -10px rgba(37, 211, 102, 0.75); }
.whatsapp-flutuante svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-flutuante-texto { white-space: nowrap; }

/* ===================== FOCO (acessibilidade) ===================== */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ===================== ANIMAÇÕES E EFEITOS ===================== */
@keyframes subir { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes surgir { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes flutua { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes respira { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.035); } }
@keyframes brilhoDisco {
  0%, 100% { box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(201,168,76,0.25); }
  50% { box-shadow: 0 44px 110px -26px rgba(201,168,76,0.4), inset 0 0 0 1px rgba(201,168,76,0.45); }
}
@keyframes derivaGlow { from { transform: translate(0, 0) scale(1); } to { transform: translate(-70px, 46px) scale(1.12); } }
@keyframes brilhoBtn { from { left: -130%; } to { left: 150%; } }
@keyframes pulsoZap { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(1.6); opacity: 0; } }

/* glow vivo no hero (estrutura) */
.hero-grid { z-index: 1; }
.hero::after {
  content: ""; position: absolute; z-index: 0; top: -18%; right: -8%;
  width: 46rem; height: 46rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 62%);
  pointer-events: none;
}
/* keyframes do Caminho 81 */
@keyframes desenhar { to { stroke-dashoffset: 0; } }
@keyframes popNo { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } }
@keyframes aparecerFade { from { opacity: 0; } to { opacity: 1; } }

/* varredura de brilho nos botões dourados (estrutura) */
.btn-dourado { position: relative; overflow: hidden; }
.btn-dourado::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg); pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  /* entrada do hero */
  .hero-texto > * { animation: subir 0.7s ease both; }
  .hero-texto > *:nth-child(1) { animation-delay: 0.02s; }
  .hero-texto > *:nth-child(2) { animation-delay: 0.10s; }
  .hero-texto > *:nth-child(3) { animation-delay: 0.18s; }
  .hero-texto > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-texto > *:nth-child(5) { animation-delay: 0.34s; }
  .hero-visual { animation: surgir 0.9s 0.1s ease both; }

  /* desenho do Caminho 81 (momento único ao carregar, ritmo gracioso) */
  .caminho-linha { stroke-dasharray: 780; stroke-dashoffset: 780; animation: desenhar 3.2s 0.4s cubic-bezier(0.55, 0.08, 0.25, 1) forwards; }
  .caminho-area { opacity: 0; animation: aparecerFade 1.2s 2.9s ease forwards; }
  .caminho-leak { opacity: 0; animation: aparecerFade 0.9s 3.7s ease forwards; }
  .caminho .no { opacity: 0; transform: scale(0.3); transform-box: fill-box; transform-origin: center; animation: popNo 0.6s ease forwards; }
  .caminho .no-1 { animation-delay: 1.0s; }
  .caminho .no-2 { animation-delay: 1.7s; }
  .caminho .no-3 { animation-delay: 2.4s; }
  .caminho .no-fim { animation-delay: 3.15s; }
  .caminho .no-leak { animation-delay: 3.7s; }
  .caminho-labels text { opacity: 0; animation: aparecerFade 0.65s ease forwards; }
  .caminho-labels text:nth-child(1) { animation-delay: 1.25s; }
  .caminho-labels text:nth-child(2) { animation-delay: 1.95s; }
  .caminho-labels text:nth-child(3) { animation-delay: 2.65s; }
  .caminho-labels text:nth-child(4) { animation-delay: 3.85s; }
  .caminho-labels text:nth-child(5) { animation-delay: 3.25s; }

  /* brilho ao passar o mouse nos botões dourados */
  .btn-dourado:hover::after { animation: brilhoBtn 0.9s ease; }

  /* pulso do WhatsApp flutuante */
  .whatsapp-flutuante::before {
    content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 999px;
    background: #25D366; animation: pulsoZap 2.4s ease-out infinite;
  }

  /* reveal por seção (opacidade) + cascata dos itens */
  .js .secao > .container { opacity: 0; transition: opacity 0.6s ease; }
  .js .secao.revelado > .container { opacity: 1; }

  .js [data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .js .revelado [data-stagger] > * { opacity: 1; transform: none; }
  .js .revelado [data-stagger] > *:nth-child(1) { transition-delay: 0.06s; }
  .js .revelado [data-stagger] > *:nth-child(2) { transition-delay: 0.12s; }
  .js .revelado [data-stagger] > *:nth-child(3) { transition-delay: 0.18s; }
  .js .revelado [data-stagger] > *:nth-child(4) { transition-delay: 0.24s; }
  .js .revelado [data-stagger] > *:nth-child(5) { transition-delay: 0.30s; }
  .js .revelado [data-stagger] > *:nth-child(6) { transition-delay: 0.36s; }
  .js .revelado [data-stagger] > *:nth-child(7) { transition-delay: 0.42s; }
  .js .revelado [data-stagger] > *:nth-child(8) { transition-delay: 0.48s; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .caminho { width: min(440px, 96%); }
  .topo-nav { display: none; }
  .fundador-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .fundador-visual { order: -1; }
  .fundador-nota { text-align: left; }
}

@media (max-width: 768px) {
  .diag-grid { grid-template-columns: 1fr; }
  .quem-grid { grid-template-columns: 1fr; gap: 26px; }
  .btn-topo { display: none; }
  .hero { padding: 60px 0 68px; }
  .secao { padding: 64px 0; }
  .hero-ctas .btn { width: 100%; }
  .seta-perda { display: none; }
  .passo-perda { min-width: 100%; }
  .rodape-top { flex-direction: column; align-items: flex-start; gap: 26px; }
  .rodape-pilares { margin: 0; }
  .whatsapp-flutuante-texto { display: none; }
  .whatsapp-flutuante { padding: 15px; right: 18px; bottom: 18px; }
  .whatsapp-flutuante svg { width: 28px; height: 28px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .topo-logo img { height: 44px; }
  .preco-titulo { font-size: 1.6rem; }
  .nicho-inner { gap: 8px 14px; }
}
