/* ============================================================
   LAYOUT E COMPONENTES — mobile first (base 390px)
   Cores: apenas via tokens de css/theme.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--preto-base);
  color: var(--texto);
  font-family: var(--fonte);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Vinheta suave nas bordas da tela */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 5;
}

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

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  color: var(--branco);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1rem; max-width: 65ch; }

strong { color: var(--branco); font-weight: 600; }

.ouro-texto { color: var(--ouro); }

/* Degradê metálico em texto — no máximo um por seção */
.texto-metal {
  background: var(--degrade-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  color: var(--ouro);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.micro {
  color: var(--texto-suave);
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 46ch;
}

.nota-clinica {
  color: var(--texto-suave);
  font-size: 0.74rem;
  line-height: 1.55;
  max-width: 52ch;
  margin-top: 0.85rem;
}

/* ---------- Estrutura ---------- */

.secao { padding: 4.5rem 1.35rem; position: relative; }
.secao--alt { background: var(--preto-profundo); }

.container { max-width: 1080px; margin: 0 auto; position: relative; }
.container--estreito { max-width: 720px; }

.centro { text-align: center; }
.centro p, .centro .micro, .centro .nota-clinica { margin-left: auto; margin-right: auto; }

.divisor {
  height: 1px;
  max-width: 340px;
  margin: 0 auto;
  background: var(--divisor-ouro);
  opacity: 0.5;
  border: 0;
}

/* ---------- Botões ---------- */

.botao {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--raio-botao);
  padding: 1rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
  text-align: center;
}

.botao--primario {
  background: var(--degrade-metal);
  color: var(--preto-base);
  border: none;
  position: relative;
  overflow: hidden;
}

.botao--primario:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* brilho único e lento no hover */
.botao--primario::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 1.1s ease;
}

.botao--primario:hover::after { left: 130%; }

.botao--secundario {
  background: transparent;
  border: 1px solid var(--ouro-fraco);
  color: var(--ouro);
}

.botao--secundario:hover { background: var(--ouro-fraco); }

.botao--largo { width: 100%; max-width: 380px; }

/* ---------- Cards genéricos ---------- */

.card {
  background: var(--fume-1);
  border: 1px solid var(--linha);
  border-radius: var(--raio-card);
  box-shadow: var(--sombra-card), var(--filete-luz);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  background: var(--fume-2);
  box-shadow: var(--sombra-card-hover), var(--filete-luz);
  transform: translateY(-4px);
}

/* ---------- Hero ---------- */

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 1.35rem 4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--halo-ouro);
  pointer-events: none;
}

.hero .marca {
  position: absolute;
  top: 1.6rem;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--texto-suave);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero .tensao {
  color: var(--texto);
  font-size: 1.02rem;
  max-width: 34ch;
  margin: 0 auto 1.5rem;
}

.hero h1 { max-width: 17ch; margin-left: auto; margin-right: auto; }

.hero .subtitulo {
  color: var(--texto);
  max-width: 52ch;
  margin: 1.25rem auto 0;
}

.hero .exclusividade {
  color: var(--texto-suave);
  font-size: 0.88rem;
  max-width: 46ch;
  margin: 1.5rem auto 2.25rem;
}

.hero .exclusividade strong { color: var(--branco); }

/* link secundário do hero — sempre em linha própria, abaixo do botão */
.link-investimento {
  display: block;
  width: fit-content;
  margin: 1.15rem auto 0;
  color: var(--ouro);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--ouro-fraco);
  padding-bottom: 0.28rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.link-investimento:hover {
  border-bottom-color: var(--ouro);
  color: var(--ouro-claro);
}

.link-investimento:focus-visible {
  outline: 1px solid var(--ouro);
  outline-offset: 6px;
}

/* indicador de rolagem */
.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--ouro-fraco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cue-flutua 2.8s ease-in-out infinite;
}

.scroll-cue svg { stroke: var(--ouro); }

.scroll-cue:hover { background: var(--ouro-fraco); }

/* filete que nasce do transparente e desce até o círculo */
.scroll-cue__linha {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--ouro));
  opacity: 0.6;
  pointer-events: none;
}

@keyframes cue-flutua {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Para quem é / não é ---------- */

.filtro-colunas {
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
}

.filtro-card h3 { margin-bottom: 1.25rem; }

.filtro-card ul { list-style: none; margin: 0; padding: 0; }

.filtro-card li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

/* losango dourado */
.filtro-card li::before,
.trilha li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  background: var(--ouro);
  transform: rotate(45deg);
}

.filtro-card--nao li::before { background: var(--texto-suave); }

.frase-ancora {
  font-size: 1.1rem;
  color: var(--branco);
  max-width: 48ch;
  margin: 2.5rem auto 0;
  text-align: center;
  font-weight: 600;
}

/* ---------- Trilhas ---------- */

.trilhas-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.trilha { display: flex; flex-direction: column; }

.trilha .icone {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--ouro-fraco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.trilha .icone svg { stroke: var(--ouro); }

.trilha .nome {
  color: var(--ouro);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.trilha .publico {
  color: var(--texto-suave);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.trilha .abertura { color: var(--branco); font-weight: 600; }

.trilha .rotulo-pontos {
  font-weight: 600;
  color: var(--branco);
  font-size: 0.9rem;
  margin: 1.1rem 0 0.75rem;
}

.trilha ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }

.trilha li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.trilha .fechamento { color: var(--branco); font-weight: 600; }

.trilha .exclusiva {
  color: var(--texto-suave);
  font-size: 0.82rem;
  margin-bottom: 1.4rem;
}

.trilha .botao { margin-top: auto; }

/* ---------- Timeline do processo ---------- */

.timeline {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--linha-forte);
}

.timeline li {
  position: relative;
  padding: 0 0 2.1rem 3.4rem;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline .num {
  position: absolute;
  left: 0;
  top: -2px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--fume-1);
  border: 1px solid var(--ouro-fraco);
  color: var(--ouro);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline h3 { margin-bottom: 0.3rem; font-size: 1.02rem; }

.timeline p { color: var(--texto-suave); font-size: 0.92rem; margin: 0; }

/* ---------- Retorno + Material ---------- */

.valor-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }

/* ---------- Quem é a Verena ---------- */

.bio { display: grid; gap: 2rem; align-items: center; }

.bio-foto {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.bio-foto img { border-radius: var(--raio-card); }

/* degradê inferior integrando a foto ao fundo da seção */
.bio-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--raio-card);
  background: linear-gradient(180deg, transparent 55%, var(--preto-profundo) 100%);
}

.secao:not(.secao--alt) .bio-foto::after {
  background: linear-gradient(180deg, transparent 55%, var(--preto-base) 100%);
}

/* carta da Verena: foto abaixo do texto no mobile, à direita no desktop */
.bio--carta .bio-foto { order: 2; }

/* ---------- Accordion ---------- */

.accordion { margin-top: 2.5rem; }

.acc-item h3 { margin: 0; }

.acc-item {
  background: var(--fume-3);
  border: 1px solid var(--linha);
  border-radius: 12px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--branco);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.acc-trigger::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--ouro);
  border-bottom: 1px solid var(--ouro);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.acc-trigger[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}

.acc-trigger:focus-visible {
  outline: 2px solid var(--ouro);
  outline-offset: -2px;
}

.acc-panel { padding: 0 1.25rem 1.25rem; }

.acc-panel p { color: var(--texto); font-size: 0.93rem; margin: 0; }

/* ---------- Planos ---------- */

.planos { position: relative; }

.planos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--halo-ouro);
  pointer-events: none;
}

.planos-grid {
  display: grid;
  gap: 1.35rem;
  margin-top: 2.75rem;
}

.plano {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2.25rem 1.5rem;
  position: relative;
}

.plano--destaque { border: 1px solid var(--ouro); }

.plano .selo {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ouro-fraco);
  color: var(--ouro);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--ouro-fraco);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  background-color: rgba(17, 17, 17, 0.9);
}

.plano .emoji { font-size: 1.5rem; margin-bottom: 0.6rem; }

.plano .qtd {
  color: var(--branco);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.plano .preco {
  color: var(--branco);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.plano .preco span { font-size: 1rem; font-weight: 400; color: var(--texto-suave); }

.plano .incluso {
  color: var(--texto-suave);
  font-size: 0.84rem;
  margin-bottom: 1.5rem;
  min-height: 2.6em;
}

.plano .botao { margin-top: auto; }

.pagamento {
  text-align: center;
  color: var(--texto-suave);
  font-size: 0.88rem;
  margin-top: 2.25rem;
}

/* ---------- CTA final ---------- */

.cta-final h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }

/* ---------- Rodapé ---------- */

.rodape {
  background: var(--preto-profundo);
  border-top: 1px solid var(--linha);
  padding: 3rem 1.35rem 6.5rem;
  text-align: center;
}

.rodape .nome {
  color: var(--branco);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.rodape .nota {
  color: var(--texto-suave);
  font-size: 0.78rem;
  max-width: 62ch;
  margin: 0 auto 1.75rem;
}

.rodape nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

.rodape a {
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 0.82rem;
}

.rodape a:hover { color: var(--ouro); }

.rodape .copy { color: var(--texto-suave); font-size: 0.72rem; margin-top: 1.75rem; }

/* ---------- WhatsApp flutuante ---------- */

.whats-flutuante {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--fume-2);
  border: 1px solid var(--ouro-fraco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra-card);
  transition: background-color 0.25s ease;
}

.whats-flutuante:hover { background: var(--fume-3); }

.whats-flutuante svg { fill: var(--ouro); }

/* ---------- Animações de entrada ---------- */

/* sem JS a página fica inteira visível; a classe .anima no <html>
   habilita o estado inicial oculto das animações de entrada */
html.anima .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.anima .reveal.visivel { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.anima .reveal { opacity: 1; transform: none; transition: none; }
  .botao, .card { transition: none; }
  .botao--primario::after { display: none; }
  .scroll-cue { animation: none; }
}

/* ---------- Páginas legais ---------- */

.legal { padding: 4rem 1.35rem; }
.legal h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
.legal h2 { font-size: 1.15rem; margin-top: 2.25rem; }
.legal p, .legal li { color: var(--texto); font-size: 0.95rem; }
.legal a { color: var(--ouro); }

/* ---------- Breakpoints ---------- */

@media (min-width: 720px) {
  .secao { padding: 6.5rem 2rem; }
  .filtro-colunas { grid-template-columns: 1fr 1fr; }
  .valor-grid { grid-template-columns: 1fr 1fr; }
  .planos-grid { grid-template-columns: 1fr 1fr; }
  .bio { grid-template-columns: 5fr 7fr; gap: 3.5rem; }
  .bio--carta { grid-template-columns: 7fr 5fr; align-items: start; }
  .bio--carta .bio-foto { position: sticky; top: 4rem; }
}

@media (min-width: 1024px) {
  .trilhas-grid { grid-template-columns: repeat(3, 1fr); }
  .planos-grid { grid-template-columns: repeat(4, 1fr); }
}
