/* ===================== TOKENS ===================== */
:root {
  --navy: #0a1f3d;
  --navy-dark: #061630;
  --navy-light: #14315c;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --ink: #1a2333;
  --ink-soft: #4a5568;
  --border-soft: #e2e6ec;

  --font-head: 'Poppins', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --shadow-soft: 0 8px 24px rgba(10, 31, 61, 0.10);
  --shadow-btn: 0 10px 24px rgba(217, 119, 6, 0.35);
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 720px; }
.center { text-align: center; }

/* ===================== HEADER ===================== */
.site-header {
  background: var(--navy-dark);
  padding: 18px 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.2px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-btn);
}
.btn-cta:active { transform: scale(0.98); }
.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
  width: 100%;
  max-width: 420px;
}
.btn-block { width: 100%; max-width: none; padding: 14px 20px; font-size: 15px; }

@media (min-width: 480px) {
  .btn-lg { width: auto; }
}

/* ===================== HERO ===================== */
.hero {
  background: radial-gradient(120% 100% at 50% 0%, var(--navy-light) 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 56px 0 48px;
  text-align: center;
}
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero-title {
  font-size: 40px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-support {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 480px;
  margin: 0 auto 32px;
}
.hero-microcopy {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }

@media (min-width: 640px) {
  .hero { padding: 88px 0 72px; }
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 24px; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 56px 0; }
.section-light { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .body-text { color: #cbd5e1; }
.section-title {
  font-size: 26px;
  margin-bottom: 28px;
  text-align: center;
}
.subsection-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--amber);
  text-align: center;
  margin: 40px 0 20px;
}
.body-text {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.body-text.center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }

@media (min-width: 640px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 32px; }
}

/* ===================== ICONS ===================== */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; }
.icon-check {
  width: 26px; height: 26px;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  border-radius: 50%;
  padding: 5px;
}
.icon-amber { width: 30px; height: 30px; color: var(--amber); }
.icon-navy { width: 22px; height: 22px; color: var(--navy); }
.icon-lg { width: 52px; height: 52px; margin: 0 auto 20px; }

/* ===================== CHECK LIST (dor) ===================== */
.check-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
}

/* ===================== LETTER (virada) ===================== */
.letter-text {
  font-size: 19px;
  line-height: 1.7;
  color: #e2e8f0;
  text-align: center;
}

/* ===================== HIGHLIGHT BOX ===================== */
.highlight-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.highlight-box p { font-weight: 600; font-size: 15px; color: var(--navy); }

/* ===================== DAY LIST ===================== */
.day-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.day-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.day-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.day-name { font-size: 15px; color: var(--white); }

/* ===================== BONUS GRID ===================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.bonus-card p { font-size: 14px; font-weight: 600; margin-top: 12px; color: var(--white); }

@media (min-width: 560px) {
  .bonus-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.avatar {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
}
.avatar svg { width: 30px; height: 30px; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 6px; }
.testimonial-text { font-size: 13px; color: #94a3b8; font-style: italic; }

@media (min-width: 720px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== PRICE SECTION ===================== */
.section-price {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 64px 0;
}
.price-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 64px;
  color: var(--navy);
  margin: 8px 0 18px;
}
.price-cents { font-size: 32px; color: var(--ink-soft); }
.trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}

@media (min-width: 480px) {
  .trust-row { flex-direction: row; gap: 28px; }
}

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 14px;
  font-size: 22px;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14px; color: #cbd5e1; padding-bottom: 18px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 36px 0;
  text-align: center;
}
.footer-brand { font-family: var(--font-head); font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-year { font-size: 12px; margin-bottom: 14px; }
.footer-whatsapp { font-size: 13px; color: var(--amber); font-weight: 600; }

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 22, 48, 0.92);
  backdrop-filter: blur(6px);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
