/* ===== BASE — variante agressiva 30 dias (navy + gold + urgência) ===== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --navy: #0f2744;
  --navy-dark: #081828;
  --gold: #e8b923;
  --gold-deep: #c99a12;
  --urgent: #e23b2f;
  --paper: #f2f4f8;
  --ink: #0e1726;
  --muted: #5a6578;
  --line: rgba(15, 39, 68, 0.1);
  --white: #fff;
  --ok: #1f8f4e;
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: "Figtree", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  padding-bottom: 76px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, .brand-mark, .price-now, .offer-valor {
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.section {
  padding: 48px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.section h2 {
  font-size: clamp(1.4rem, 5vw, 1.85rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  text-align: center;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--urgent);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 11px 14px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 36px 20px 40px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(226,59,47,0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(232,185,35,0.2), transparent 50%),
    linear-gradient(165deg, #120a12 0%, var(--navy-dark) 50%, #061018 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.brand-mark {
  font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero-kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.85rem, 7.2vw, 2.75rem);
  font-weight: 900;
  max-width: 560px;
  margin: 0 auto 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero h1 span {
  color: var(--gold);
  display: inline;
}
.hero-story {
  max-width: 480px;
  margin: 0 auto 22px;
  text-align: left;
}
.hero-story p {
  font-size: 15.5px;
  opacity: 0.92;
  margin-bottom: 12px;
  line-height: 1.55;
}
.hero-story strong { color: var(--gold); font-weight: 700; }
.hero-challenge {
  margin-top: 16px !important;
  padding: 12px 14px;
  background: rgba(226,59,47,0.18);
  border-left: 3px solid var(--urgent);
  font-weight: 700 !important;
  opacity: 1 !important;
  color: #fff !important;
}
.btn-hero {
  max-width: 320px;
  margin: 0 auto;
}

.btn-cta {
  display: inline-block;
  width: 100%;
  background: linear-gradient(180deg, #ff4a3d 0%, var(--urgent) 100%);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  padding: 16px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(226,59,47,0.4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-cta:active { transform: scale(0.98); }

.btn-after-video {
  display: block;
  max-width: 360px;
  margin: 24px auto 0;
}

/* ===== METHOD / PUNCH ===== */
.method { text-align: center; }
.punch-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.punch-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--urgent);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--muted);
}
.punch-list strong { color: var(--ink); display: block; margin-bottom: 2px; }

.offer-badge {
  display: inline-block;
  background: var(--urgent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.offer-save {
  font-size: 12.5px;
  color: var(--ok);
  font-weight: 700;
  margin-top: 6px;
}
.offer-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.final-cta .btn-cta,
.offer .btn-cta {
  background: linear-gradient(180deg, #ff4a3d 0%, var(--urgent) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(226,59,47,0.35);
}

/* ===== DELIVERABLES ===== */
.about { text-align: center; }
.deliverables {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 18px;
}
.deliverables li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
.deliverables li:last-child { border-bottom: none; }
.deliverables strong { color: var(--ink); }

/* ===== TOC ===== */
.toc { text-align: center; }
.toc-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list li span {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
}

/* ===== VIDEOS ===== */
.videos {
  text-align: center;
  background: var(--white);
  max-width: 100%;
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.videos h2,
.videos-intro,
.video-dots {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.videos-intro {
  color: var(--muted);
  font-size: 13.5px;
  margin: -6px auto 18px;
}
.video-carousel {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
}
.video-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 16px 10px;
  flex: 1;
  min-width: 0;
  scroll-padding-inline: 16px;
}
.video-track::-webkit-scrollbar { display: none; }

.video-slide {
  flex: 0 0 230px;
  width: 230px;
  max-width: calc(100vw - 90px);
  scroll-snap-align: center;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-align: left;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  background-color: #1a2433;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 2;
}
.play-btn::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-style: solid;
  border-width: 11px 0 11px 16px;
  border-color: transparent transparent transparent var(--navy-dark);
}
.video-caption {
  font-size: 12.5px;
  color: var(--muted);
  padding: 10px 12px 12px;
  font-weight: 600;
}
.video-nav {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy-dark);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-nav:disabled { opacity: 0.3; }
.video-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.video-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9d0dc;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.video-dot.active { background: var(--navy); transform: scale(1.2); }

/* Modal */
.video-modal[hidden] { display: none !important; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 40, 0.9);
}
.video-modal-box {
  position: relative;
  width: min(360px, 100%);
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== STORY ===== */
.story { text-align: center; }
.story-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}
.story-lead strong { color: var(--navy-dark); }

/* ===== OFFER ===== */
.offer {
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
  max-width: 100%;
  padding: 48px 20px;
}
.offer h2 { color: #fff; }
.offer-sub { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 22px; }
.offer-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 24px 20px;
  max-width: 360px;
  margin: 0 auto;
}
.offer-cover {
  max-width: 110px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.offer-cover img { width: 100%; height: auto; }
.offer-includes {
  text-align: left;
  margin-bottom: 16px;
}
.offer-includes li {
  font-size: 14px;
  padding: 6px 0 6px 20px;
  position: relative;
}
.offer-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--ok);
  border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg);
}
.offer-price { margin-bottom: 14px; }
.offer-de { color: var(--muted); font-size: 14px; }
.offer-de s { color: #c33; }
.offer-valor {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}
.offer-valor span { font-size: 16px; margin-left: 3px; }
.payment-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.pay-badge {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq { text-align: center; }
.faq-list { text-align: left; margin-top: 4px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
}
.faq-item summary {
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 18px;
  color: var(--navy);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ===== FINAL ===== */
.final-cta {
  text-align: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  max-width: 100%;
  padding: 44px 22px;
}
.final-cta h2 { color: #fff; margin-bottom: 8px; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 14.5px; margin-bottom: 18px; }

.footer {
  text-align: center;
  padding: 24px 20px 36px;
  font-size: 12.5px;
  color: var(--muted);
}
.footer-note { margin-top: 4px; opacity: 0.85; }

/* ===== STICKY ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}
.sticky-price { font-size: 11px; color: var(--muted); line-height: 1.2; white-space: nowrap; }
.sticky-price span { display: block; }
.sticky-price strong {
  display: block;
  font-size: 17px;
  color: var(--navy-dark);
  font-family: "Outfit", sans-serif;
}
.btn-sticky { flex: 1; padding: 12px 10px; font-size: 13.5px; }
body.modal-open .sticky-cta { display: none; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .section { max-width: 600px; padding: 56px 24px; }
  .toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}

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

  .section { max-width: 720px; padding: 64px 32px; }
  .section h2 { font-size: 2rem; }

  .hero { padding: 64px 40px 72px; }
  .hero-inner { max-width: 720px; }
  .hero h1 { font-size: 3.1rem; max-width: none; }
  .hero-story { max-width: 560px; }

  .video-carousel { max-width: 720px; }
  .video-slide { flex-basis: 240px; width: 240px; }
  .offer-card { max-width: 400px; }
  .btn-hero, .btn-after-video { max-width: 400px; }
}

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