/* ===================================================================
   Cris Félix — Personal Trainer
   Design system: dark premium · preto + dourado + azul escuro
   =================================================================== */

:root {
  /* Cores */
  --black:      #0a0a0b;
  --black-2:    #101115;
  --surface:    #15171c;
  --navy:       #0e2a47;
  --navy-2:     #0a1d33;
  --gold:       #c9a24b;
  --gold-2:     #e8c66b;
  --gold-soft:  rgba(201, 162, 75, .14);
  --white:      #f6f6f4;
  --muted:      #a6a8ad;
  --line:       rgba(255, 255, 255, .09);
  --whats:      #25d366;
  --whats-d:    #1da851;

  /* Tipografia */
  --display: "Oswald", system-ui, "Segoe UI", sans-serif;
  --body:    "Inter", system-ui, "Segoe UI", Arial, sans-serif;

  --container: 1160px;
  --radius:    16px;
  --gold-grad: linear-gradient(135deg, var(--gold-2), var(--gold));

  /* Easing elástico (overshoot) para entradas "voando pro lugar" */
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: .2px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.gold { color: var(--gold-2); }
.eyebrow {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 14px;
}

/* ---------- Botões ---------- */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad); border-radius: 999px; font-family: var(--display);
  font-weight: 600; font-size: .98rem; letter-spacing: .4px; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn-lg { --pad: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-whats { background: var(--whats); color: #08240f; box-shadow: 0 10px 26px rgba(37, 211, 102, .28); }
.btn-whats:hover { background: var(--whats-d); box-shadow: 0 14px 32px rgba(37, 211, 102, .38); color:#fff; }

.btn-gold { background: var(--gold-grad); color: #1a1408; box-shadow: 0 10px 26px rgba(201, 162, 75, .3); }
.btn-gold:hover { box-shadow: 0 14px 34px rgba(201, 162, 75, .42); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--gold-grad); color: #1a1408; font-family: var(--display);
  font-weight: 700; font-size: 1.05rem; letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(201,162,75,.35);
}
.brand-text strong { display: block; font-family: var(--display); font-size: 1.12rem; letter-spacing: 1.5px; }
.brand-text small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .92rem; color: var(--white); position: relative; padding: 4px 0; }
.nav > a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-3px; width:0; height:2px; background: var(--gold-grad); transition: width .25s ease; }
.nav > a:not(.btn):hover { color: var(--gold-2); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 9px 18px; font-size: .85rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero banner (foto de fundo + texto por cima) ---------- */
.hero {
  position: relative; display: flex; align-items: center; background: var(--black);
  min-height: min(92vh, 820px); padding: clamp(80px, 12vh, 130px) 0 clamp(70px, 10vh, 110px);
  overflow: hidden; isolation: isolate;
}
/* Foto da Cris ancorada à direita, na altura natural (nítida, sem upscale nem transform) */
.hero-img {
  position: absolute; top: 0; bottom: 0; right: 0; left: auto; z-index: 0;
  height: 100%; width: auto; max-width: 74%;
  object-fit: cover; object-position: center top;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}
/* Overlay: escuro onde fica o texto, revelando a foto aos poucos (fade) */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(10,10,11,.94) 24%, rgba(10,10,11,.62) 48%, rgba(10,10,11,.18) 72%, rgba(10,10,11,.05) 100%),
    radial-gradient(80% 60% at 12% 38%, rgba(14,42,71,.5), transparent 70%),
    linear-gradient(0deg, var(--black) 2%, transparent 26%),
    linear-gradient(180deg, rgba(10,10,11,.65) 0%, transparent 22%);
}
/* Brilho dourado sutil */
.hero::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: radial-gradient(50% 40% at 80% 30%, rgba(201,162,75,.16), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 620px; }
.hero-copy h1 { font-size: clamp(2.6rem, 6.4vw, 4.8rem); text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
.hero-copy .lead { color: #d9dbe0; font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 520px; margin-bottom: 30px; text-shadow: 0 1px 14px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-cred { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 32px; color: #e7c98a; font-size: .86rem; font-weight: 600; letter-spacing: .3px; text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.hero-cred .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); opacity: .8; }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--display); font-size: 1.9rem; color: var(--gold-2); line-height: 1; }
.hero-stats span { color: #c7c9ce; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
/* Indicador de scroll */
.hero-scroll { position: absolute; left: 50%; bottom: 22px; z-index: 2; width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; transform: translateX(-50%); }
.hero-scroll::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: var(--gold-2); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 10px); } }

/* ---------- Chips band (marquee em movimento) ---------- */
.chips-band { border-block: 1px solid var(--line); background: var(--black-2); overflow: hidden; }
.chips-marquee {
  display: flex; padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.chips-track {
  display: flex; flex-wrap: nowrap; white-space: nowrap;
  width: max-content; animation: marquee 32s linear infinite;
}
.chips-marquee:hover .chips-track { animation-play-state: paused; }
.chips-track span {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem;
  color: var(--white); padding: 8px 16px; margin-right: 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.02); transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.chips-track span::before { content: "✦ "; color: var(--gold); }
.chips-track span:hover { color: var(--gold-2); border-color: rgba(201,162,75,.5); background: var(--gold-soft); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Sobre ---------- */
.sobre { background: linear-gradient(180deg, var(--black), var(--navy-2) 140%); }
.sobre-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.sobre-photo .photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.sobre-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); text-transform: uppercase; margin-bottom: 18px; }
.sobre-copy p { color: var(--muted); margin-bottom: 16px; max-width: 56ch; }
.sobre-copy strong { color: var(--white); }
.values { margin: 22px 0 28px; display: grid; gap: 10px; }
.values li { position: relative; padding-left: 30px; color: var(--white); }
.values li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; font-size: .7rem; font-weight: 700;
}

/* ---------- Credenciais / Autoridade ---------- */
.creds { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 26px; }
.creds li {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px;
  border: 1px solid rgba(201,162,77,.4); border-radius: 999px; background: var(--gold-soft);
  color: var(--white); font-size: .88rem; font-weight: 600; line-height: 1.2;
}
.creds .ico { width: 17px; height: 17px; fill: var(--gold-2); flex: none; }

/* ---------- Planos ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1180px; margin: 0 auto; align-items: start; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.4); box-shadow: 0 24px 50px rgba(0,0,0,.45); }
.plan-featured {
  background: linear-gradient(180deg, rgba(14,42,71,.55), var(--surface));
  border-color: rgba(201,162,75,.55);
  box-shadow: 0 0 0 1px rgba(201,162,75,.2), 0 24px 50px rgba(0,0,0,.4);
}
.plan-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #1a1408; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem; padding: 6px 18px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 6px 16px rgba(201,162,75,.4);
}
.plan-name { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.plan-price { font-family: var(--display); font-weight: 700; font-size: 3.4rem; line-height: 1; color: var(--gold-2); margin: 6px 0 4px; }
.plan-price .cur { font-size: 1.3rem; vertical-align: super; margin-right: 4px; color: var(--white); }
.plan-price .cents { font-size: 1.4rem; }
.plan-tag { color: var(--muted); font-size: .94rem; margin-bottom: 22px; min-height: 42px; }
.plan-options { display: grid; gap: 10px; margin: 6px 0 22px; }
.plan-options li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.02);
}
.plan-options .opt-label { color: var(--white); font-weight: 600; font-size: .98rem; }
.plan-options .opt-price { font-family: var(--display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--gold-2); white-space: nowrap; }
.plan-options .opt-price .cur { font-size: .85rem; vertical-align: super; margin-right: 3px; color: var(--white); }
.plan-options .opt-price .cents { font-size: .9rem; }
.plan-list { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan-list li { position: relative; padding-left: 30px; color: var(--white); font-size: .97rem; }
.plan-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}

/* ---------- Resultados / Antes e Depois ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--black-2);
  transition: transform .25s ease, border-color .25s ease; position: relative;
}
.ba-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.4); }
.ba-single, .ba-img { position: relative; }
.ba-single { aspect-ratio: 4 / 5; }
.ba-single img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 4 / 5; }
.ba-pair .ba-img { height: 100%; overflow: hidden; }
.ba-pair .ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ba-pair .ba-img + .ba-img { border-left: 2px solid var(--gold); }
.ba-tag {
  position: absolute; top: 12px; left: 12px; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  background: rgba(10,10,11,.78); color: var(--white); backdrop-filter: blur(4px);
}
.ba-after { background: var(--gold-grad); color: #1a1408; }
.ba-both { background: var(--gold-grad); color: #1a1408; left: 50%; transform: translateX(-50%); }

.ba-cta {
  display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 32px 26px;
  background: linear-gradient(160deg, var(--navy), var(--black-2));
  border-color: rgba(201,162,75,.4);
}
.ba-cta p { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; line-height: 1.1; }

/* ---------- Depoimentos ---------- */
.depoimentos { background: linear-gradient(180deg, var(--navy-2), var(--black)); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.quote .stars { color: var(--gold-2); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 1.04rem; }
.quote footer { margin-top: 16px; color: var(--muted); font-family: var(--display); letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; }
.depo-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 24px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(56px, 8vw, 96px) 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(201,162,75,.2), transparent 60%), linear-gradient(180deg, var(--navy-2), var(--black)); }
.cta-inner { position: relative; z-index: 1; max-width: 740px; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--black); padding: 40px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; font-family: var(--display); letter-spacing: 1.5px; }
.footer-brand small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold-2); }
.footer-copy { color: var(--muted); font-size: .8rem; width: 100%; text-align: center; padding-top: 14px; border-top: 1px solid var(--line); }

/* ---------- Botão flutuante WhatsApp ---------- */
.whats-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px;
  border-radius: 50%; background: var(--whats); display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .2s ease;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes floatPulse { 0%,100%{ box-shadow: 0 10px 28px rgba(37,211,102,.45); } 50%{ box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.0); } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity .65s ease, transform .9s var(--ease-spring);
  will-change: transform, opacity;
}
/* Reset único (.reveal.in tem prioridade sobre qualquer variante de uma classe) */
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   Responsivo
   =================================================================== */
@media (max-width: 940px) {
  /* No mobile: foto em cima (rosto visível) e texto embaixo, sem sobreposição */
  .hero {
    min-height: 0; display: flex; flex-direction: column; align-items: stretch;
    padding: 0; background: var(--black);
  }
  .hero-img {
    position: relative; inset: auto; left: auto; right: auto; top: auto; bottom: auto;
    width: 100%; height: 52vh; max-width: none; z-index: 0;
    object-fit: cover; object-position: 50% 22%;
    -webkit-mask-image: none; mask-image: none;
  }
  /* Degradê só na base da foto, emendando suavemente com o fundo preto do texto */
  .hero-overlay {
    inset: 0 0 auto 0; bottom: auto; height: 52vh;
    background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,.85) 88%, var(--black) 100%);
  }
  .hero::before { display: none; }            /* remove o brilho que ficava sobre a foto */
  .hero-scroll { display: none; }             /* indicador de scroll fica só no desktop */
  .hero-inner { position: relative; z-index: 2; padding-top: 30px; padding-bottom: 44px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { text-shadow: none; }
  .hero-copy .lead { text-shadow: none; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 440px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,11,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px; transform: translateY(-130%); transition: transform .32s ease; visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav > a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 14px; justify-content: center; }
}

@media (max-width: 980px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-stats { justify-content: space-between; width: 100%; gap: 14px; }
  .hero-stats strong { font-size: 1.5rem; }
}

/* ===================================================================
   Dinamismo — animações, micro-interações e efeitos
   =================================================================== */

/* ---- Barra de progresso de leitura ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: var(--gold-grad); box-shadow: 0 0 12px rgba(201,162,75,.7);
  transition: width .12s linear;
}

/* ---- Header encolhe ao rolar ---- */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.header-inner { transition: min-height .3s ease; }
.site-header.scrolled { background: rgba(10,10,11,.92); box-shadow: 0 8px 28px rgba(0,0,0,.45); }
.site-header.scrolled .header-inner { min-height: 58px; }

/* ---- Navegação: seção ativa (scrollspy) ---- */
.nav > a:not(.btn).active { color: var(--gold-2); }
.nav > a:not(.btn).active::after { width: 100%; }

/* ---- Entrada do hero (cascata ao carregar) ---- */
.hero-anim > * { opacity: 0; animation: heroIn .85s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-anim > *:nth-child(1) { animation-delay: .12s; }
.hero-anim > *:nth-child(2) { animation-delay: .24s; }
.hero-anim > *:nth-child(3) { animation-delay: .36s; }
.hero-anim > *:nth-child(4) { animation-delay: .48s; }
.hero-anim > *:nth-child(5) { animation-delay: .60s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* O título ganha um leve destaque dourado pulsante */
.hero-copy h1 .gold { animation: goldText 3.4s ease-in-out infinite; }
@keyframes goldText {
  0%, 100% { text-shadow: 0 2px 30px rgba(0,0,0,.55); }
  50%      { text-shadow: 0 2px 30px rgba(0,0,0,.55), 0 0 26px rgba(232,198,107,.5); }
}

/* ---- Botões: brilho que cruza no hover ---- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-22deg); transition: left .6s ease; pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* ---- Variações de entrada "voando pro lugar" (estado escondido) ----
   O reset é feito por .reveal.in (especificidade maior), então aqui só
   definimos a posição inicial de cada variante. */
.reveal-l    { transform: translateX(-90px) rotate(-7deg); }   /* voa da esquerda girando */
.reveal-r    { transform: translateX(90px)  rotate(7deg);  }   /* voa da direita girando */
.reveal-up   { transform: translateY(90px) scale(.96); }       /* sobe de baixo */
.reveal-down { transform: translateY(-80px) rotate(3deg); }    /* desce do topo */
.reveal-zoom { transform: scale(.55); }                        /* cresce do centro */
.reveal-pop  { transform: scale(.2); }                         /* "estoura" pequenininho */
.reveal-spin { transform: rotate(-210deg) scale(.35); }        /* gira ao entrar */
.reveal-flip { transform: perspective(900px) rotateX(-85deg); transform-origin: top center; }
.reveal-fly-l { transform: translate(-110px, 70px) rotate(-14deg); } /* voa do canto inf. esq. */
.reveal-fly-r { transform: translate(110px, 70px)  rotate(14deg);  } /* voa do canto inf. dir. */

/* ---- Efeito 3D (tilt) nos cards ---- */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* ---- Brilhos flutuantes na seção de Planos ---- */
.planos { position: relative; overflow: hidden; }
.planos > .container { position: relative; z-index: 1; }
.planos::before, .planos::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.planos::before {
  width: 360px; height: 360px; top: -90px; left: -70px;
  background: radial-gradient(circle, rgba(201,162,75,.22), transparent 70%);
  animation: drift1 15s ease-in-out infinite;
}
.planos::after {
  width: 320px; height: 320px; bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(14,42,71,.55), transparent 70%);
  animation: drift2 18s ease-in-out infinite;
}
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(46px,34px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-38px,-44px); } }

/* ---- Preço do plano em destaque pulsa em dourado ---- */
.plan-featured .plan-price { animation: goldGlow 2.8s ease-in-out infinite; }
@keyframes goldGlow {
  0%,100% { text-shadow: none; }
  50%     { text-shadow: 0 0 20px rgba(232,198,107,.55); }
}

/* ---- Ribbon do plano em destaque com leve balanço ---- */
.plan-ribbon { animation: ribbonPop 3s ease-in-out infinite; }
@keyframes ribbonPop {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-3px); }
}

/* ---- Galeria: zoom suave na imagem ao passar o mouse ---- */
.ba-single img, .ba-pair .ba-img img { transition: transform .5s ease; }
.ba-card:hover .ba-single img, .ba-card:hover .ba-pair .ba-img img { transform: scale(1.06); }

/* ===================================================================
   Acessibilidade — reduz/desliga animações quando solicitado
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  /* Desliga apenas os efeitos contínuos / vestibulares pesados,
     mantendo as entradas curtas (reveal, hero, contadores). */
  .chips-track { animation: none !important; }
  .planos::before, .planos::after { animation: none !important; }
  .plan-ribbon, .plan-featured .plan-price, .hero-copy h1 .gold { animation: none !important; }
  .tilt { transform: none !important; }
}
