:root {
  --navy-900: #0A1640;
  --navy-700: #16266B;
  --navy-500: #2A3F9E;
  --gold: #F5B70A;
  --gold-2: #FFD23F;
  --cream: #FBF8F0;
  --cream-2: #F3EEE0;
  --ink: #13204A;
  --muted: #5A6485;
  --line: rgba(19,32,74,.12);
  --maxw: 1140px;
  --r: 18px;
}

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

body {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 4px 14px rgba(245,183,10,.3); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,183,10,.4); }
.btn--ghost { border: 2px solid rgba(255,255,255,.5); color: white; }
.btn--ghost:hover { border-color: white; background: rgba(255,255,255,.1); }

.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold); margin-bottom: 1rem;
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251,248,240,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; max-width: var(--maxw); margin: 0 auto;
}
.header__logo { display: flex; align-items: center; gap: 0.75rem; }
.header__logo-img { width: 42px; height: 42px; border-radius: 8px; }
.header__logo-text { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy-900); }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; color: var(--ink); transition: color 0.3s; }
.nav-links a:hover { color: var(--navy-700); }
.menu-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  overflow: hidden;
  padding: 6rem 0;
}
/* Glow centralizado — sem borda cinza (termina em rgba,0 não em transparent) */
.hero::before {
  content: '';
  position: absolute; top: -25%; left: 50%; transform: translateX(-50%);
  width: 900px; max-width: 120%; height: 560px;
  background: radial-gradient(ellipse at center, rgba(245,183,10,.16) 0%, rgba(245,183,10,0) 62%);
  pointer-events: none; z-index: 0;
}
.hero__container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; max-width: 800px; }
.hero__content { color: white; text-align: center; }
.hero__title { color: white; margin-bottom: 1.5rem; }
.hero__title .highlight { font-style: italic; color: var(--gold-2); }
.hero__lead { font-size: 1.1rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.hero__note { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,.7); }

/* Trust bar */
.trust-bar { background: var(--navy-900); color: white; padding: 1.5rem 0; text-align: center; }
.trust-bar__content { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1rem; font-weight: 500; }
.trust-bar__dot { color: var(--gold); }

/* Sections */
.section { padding: 5rem 0; }
.section[id] { scroll-margin-top: 84px; }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__subtitle { font-size: 1.1rem; color: var(--muted); margin-top: 1rem; }

/* Facets */
.facets { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.facet { width: 12px; height: 12px; background: var(--gold); transform: rotate(45deg); }
.facet:nth-child(2) { opacity: 0.6; }
.facet:nth-child(3) { opacity: 0.3; }

/* Resources */
.resources { background: var(--cream); }
.resources__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--r); padding: 2rem; transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(19,32,74,.12); border-color: var(--gold); }
.card__icon { width: 48px; height: 48px; background: var(--navy-700); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card__icon svg { width: 24px; height: 24px; stroke: white; }
.card__title { font-size: 1.2rem; font-weight: 600; color: var(--navy-900); margin-bottom: 0.75rem; }
.card__desc { color: var(--muted); font-size: 0.95rem; }

/* How it works */
.how { background: var(--cream-2); position: relative; overflow: hidden; }
.how .container { position: relative; z-index: 1; }
.how__watermark {
  position: absolute; right: -140px; bottom: -100px;
  width: 600px; max-width: 70%; opacity: 0.06;
  filter: grayscale(1); pointer-events: none; z-index: 0;
}
.how__steps { display: grid; gap: 3rem; max-width: 800px; margin: 0 auto; }
.step { position: relative; padding-left: 5rem; }
.step__number { position: absolute; left: 0; top: 0; font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1; }
.step__number::before { content: ''; position: absolute; top: -0.5rem; left: 0; width: 3rem; height: 2px; background: var(--navy-700); }
.step__title { font-size: 1.4rem; color: var(--navy-900); margin-bottom: 0.75rem; }
.step__desc { color: var(--muted); }

/* Plans */
.plans { background: var(--cream); }
.plans__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin: 0 auto; align-items: stretch; }
.plan { position: relative; overflow: hidden; border-radius: 24px; padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.plan__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.45rem 0.9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.plan__name { font-size: 1.6rem; }
.plan__price { display: flex; align-items: baseline; gap: 0.5rem; margin: 0.6rem 0 0.2rem; font-family: 'Fraunces', serif; }
.plan__num { font-size: 2.8rem; font-weight: 600; line-height: 1; }
.plan__per { font-size: 0.9rem; font-weight: 400; font-family: 'Mulish', sans-serif; opacity: 0.7; }
.plan__desc { font-size: 1rem; margin: 0.6rem 0 1.4rem; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.8rem; }
.plan__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; line-height: 1.45; }
.plan__list li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.plan__btn { margin-top: auto; width: 100%; text-align: center; }

/* Gratuito — azul */
.plan--free { background: linear-gradient(165deg, #16266B, #0C1A4E); color: #fff; border: 1px solid rgba(255,255,255,.08); }
.plan--free .plan__badge { background: rgba(255,255,255,.12); color: #fff; }
.plan--free .plan__desc { color: rgba(255,255,255,.74); }
.plan--free .plan__list li { color: rgba(255,255,255,.9); }
.plan--free .plan__list li svg { stroke: var(--gold); }
.plan--free .plan__btn { background: transparent; border: 2px solid rgba(255,255,255,.45); color: #fff; }
.plan--free .plan__btn:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* Plus — dourado premium */
.plan--plus {
  background: linear-gradient(158deg, #FFD23F 0%, #F5B70A 48%, #E0A005 100%);
  color: var(--navy-900);
  box-shadow: 0 26px 60px -22px rgba(224,160,5,.85);
  transform: translateY(-10px);
  border: 1px solid rgba(255,255,255,.4);
}
.plan--plus::after {
  content: ""; position: absolute; top: -60%; left: -30%;
  width: 36%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: rotate(18deg); pointer-events: none;
  animation: planShine 6s ease-in-out infinite;
}
@keyframes planShine { 0% { left: -40%; } 38%, 100% { left: 130%; } }
.plan--plus .plan__badge { background: var(--navy-900); color: var(--gold-2); }
.plan--plus .plan__desc { color: rgba(10,22,64,.82); }
.plan--plus .plan__list li { color: #16236a; font-weight: 500; }
.plan--plus .plan__list li svg { stroke: var(--navy-900); }
.plan--plus .plan__btn { background: var(--navy-900); color: #fff; border: 2px solid var(--navy-900); }
.plan--plus .plan__btn:hover { background: var(--navy-700); border-color: var(--navy-700); transform: translateY(-2px); }
.plans__note { text-align: center; margin-top: 1.8rem; font-size: 0.92rem; color: var(--muted); }

/* Security */
.security { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); color: white; }
.security__container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.security__content h2 { color: white; margin-bottom: 1rem; }
.security__subtitle { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.security__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.security__item { display: flex; align-items: flex-start; gap: 1rem; }
.security__check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 0.2rem; }
.security__check svg { width: 14px; height: 14px; stroke: var(--navy-900); stroke-width: 3; }

/* Download */
.download { background: var(--cream-2); }
.download__badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.badge-link { display: block; transition: transform 0.3s ease; }
.badge-link:hover { transform: translateY(-4px); }
.store-badge { height: 54px; width: auto; }

/* WhatsApp Channel Banner */
.whatsapp-channel { background: var(--cream); padding: 3rem 0; border-top: 1px solid var(--line); }
.whatsapp-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  max-width: 900px; margin: 0 auto; padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 24px; color: white;
}
.whatsapp-banner__content { flex: 1; }
.whatsapp-banner__icon { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.whatsapp-banner__icon svg { width: 32px; height: 32px; fill: var(--navy-900); }
.whatsapp-banner__title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.whatsapp-banner__text { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* Contact Form (CTA box) */
.cta-final { background: var(--cream); padding: 5rem 0; }
.cta-box {
  background: var(--navy-700); border-radius: 32px; padding: 4rem 3rem;
  text-align: center; max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden; /* contém o glow — evita scroll horizontal */
}
.cta-box::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,183,10,.22) 0%, rgba(245,183,10,0) 70%);
  pointer-events: none; z-index: 0;
}
.cta-box__content { position: relative; z-index: 1; }
.cta-box h2 { color: white; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 2rem; }

.contact-form { max-width: 600px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: white; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.25rem; border: 1px solid var(--line);
  border-radius: 12px; font-family: inherit; font-size: 1rem;
  background: white; color: var(--ink); transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,183,10,.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
fieldset { border: none; padding: 0; margin: 0; }
legend { display: block; color: white; font-weight: 600; margin-bottom: 0.75rem; font-size: 0.95rem; }
.radio-group {
  display: flex; flex-direction: column; gap: 0.75rem;
  /* trava o scroll-anchoring no container dos radios */
  overflow-anchor: none;
}
.radio-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; background: rgba(255,255,255,.1);
  border-radius: 8px; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  /* impede que o browser role pra centralizar o radio ao clicar */
  scroll-margin: 0;
}
.radio-option:hover { background: rgba(255,255,255,.15); }
/* Foco: suprimir no bolinha, mostrar no card inteiro */
.radio-option input[type="radio"] { width: auto; margin: 0; cursor: pointer; opacity: 0; position: absolute; }
.radio-option input[type="radio"]:focus-visible { outline: none; }
.radio-option:has(input[type="radio"]:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
/* Círculo visual customizado — não pula */
.radio-option::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.radio-option:has(input[type="radio"]:checked)::before {
  background: var(--gold); border-color: var(--gold);
}
/* Opção marcada */
.radio-option:has(input[type="radio"]:checked) { background: rgba(245,183,10,.15); border-color: var(--gold); }
.radio-option label { margin: 0; font-weight: 500; cursor: pointer; flex: 1; color: white; }
.form-error { color: var(--gold-2); font-size: 0.9rem; margin-top: 0.5rem; display: block; min-height: 1.3em; }
.form-actions { text-align: center; margin-top: 2rem; }

/* Footer */
.footer { background: var(--navy-900); color: white; padding: 3rem 0 2rem; }
.footer__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 2rem; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; }
.footer__logo-img { width: 36px; height: 36px; border-radius: 6px; }
.footer__logo-text { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; }
.footer__nav { display: flex; gap: 2rem; list-style: none; }
.footer__nav a { color: rgba(255,255,255,.7); transition: color 0.3s; }
.footer__nav a:hover { color: white; }
.footer__disclaimer { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.footer__copyright { text-align: center; font-size: 0.9rem; color: rgba(255,255,255,.5); }

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 73px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 2rem; gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .header__nav { flex-direction: column; align-items: flex-end; }
  .resources__grid { grid-template-columns: 1fr; }
  .plans__grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan--plus { transform: none; }
  .security__container { grid-template-columns: 1fr; gap: 3rem; }
  .whatsapp-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer__nav { flex-direction: column; gap: 1rem; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0; }
  .card { padding: 1.5rem; }
  .step { padding-left: 4rem; }
  .step__number { font-size: 2.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; border-radius: 24px; }
  .whatsapp-banner { padding: 2rem 1.5rem; }
  .radio-option { padding: 0.65rem 0.85rem; font-size: 0.95rem; }
  .store-badge { height: 48px; }
  .how__watermark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .plan--plus::after { animation: none; }
}
