:root {
  --bg: #030805;
  --bg-2: #06130c;
  --panel: #0a1710;
  --panel-2: #0f2118;
  --green: #20f76c;
  --green-2: #00b956;
  --mint: #b7ffd1;
  --text: #f4fff7;
  --muted: #9db6a6;
  --border: rgba(32, 247, 108, 0.18);
  --shadow: rgba(32, 247, 108, 0.22);
  --danger: #ff5a6d;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(32, 247, 108, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 20%, rgba(0, 185, 86, 0.13), transparent 22rem),
    linear-gradient(180deg, #020503 0%, #06130c 48%, #020503 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(rgba(32, 247, 108, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 247, 108, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(3, 8, 5, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  padding: 10px 12px 10px 18px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  display: block;
  width: auto;
  max-width: min(220px, 42vw);
  height: 46px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--mint);
}

.header-cta,
.primary-btn,
.secondary-btn,
.checkout-btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.header-cta,
.primary-btn,
.checkout-btn {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #021107;
  box-shadow: 0 16px 42px var(--shadow);
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
}

.primary-btn,
.secondary-btn {
  min-height: 54px;
  padding: 0 24px;
}

.secondary-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--mint);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

#beneficios,
#planos,
#depoimentos,
#faq,
#comprar {
  scroll-margin-top: 104px;
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  border: 1px solid rgba(32, 247, 108, 0.28);
  border-radius: 999px;
  background: rgba(32, 247, 108, 0.08);
  color: var(--green);
  padding: 0 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5vw, 5.6rem);
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
}

.subheadline {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mint);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.vsl-card,
.testimonial-shell,
.why-card,
.final-box,
.plan-card,
.benefit-card,
.deliverable-card,
.fit-card,
.timeline-item,
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(10, 23, 16, 0.82);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.vsl-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame.vimeo-frame {
  aspect-ratio: 4 / 3;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.video-caption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.deliverable-card,
.fit-card,
.timeline-item {
  padding: 24px;
}

.benefit-card p,
.deliverable-card p,
.fit-card li,
.timeline-item p,
.why-card p,
.final-box p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.icon-pill,
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(32, 247, 108, 0.12);
  color: var(--green);
  font-weight: 900;
}

.deliverable-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.deliverable-card {
  min-width: 220px;
  scroll-snap-align: start;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.testimonial {
  display: none;
  min-height: 230px;
  animation: fadeIn 420ms ease both;
}

.testimonial.active {
  display: block;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #001b0a;
  font-weight: 900;
}

.testimonial p {
  max-width: 850px;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.testimonial span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--green);
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 30px;
}

.plan-card.featured {
  border-color: rgba(32, 247, 108, 0.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 247, 108, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
    rgba(9, 30, 18, 0.92);
  transform: translateY(-10px);
}

.best-seller {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--green);
  color: #001b0a;
  padding: 7px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-head p {
  color: var(--muted);
  line-height: 1.65;
}

.price {
  color: var(--mint);
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.plan-card ul,
.fit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.fit-card li {
  position: relative;
  padding-left: 28px;
}

.plan-card li::before,
.fit-card.yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--shadow);
}

.fit-card.no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--danger);
}

.checkout-btn {
  display: grid;
  place-items: center;
  min-height: 56px;
  margin-top: 4px;
  text-transform: uppercase;
}

.checkout-btn.outline {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--mint);
  box-shadow: none;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-card,
.final-box {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

.faq-list {
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0 22px;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  margin-bottom: 20px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 36px 0 44px;
}

.footer strong {
  color: var(--text);
}

.footer p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  color: var(--mint);
}

.legal {
  grid-column: 1 / -1;
  font-size: 0.84rem;
}

.back-page {
  min-height: 100vh;
}

.back-hero {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.back-offer {
  width: min(860px, 100%);
  border: 1px solid rgba(32, 247, 108, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 247, 108, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(5, 15, 9, 0.94);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48), 0 0 70px rgba(32, 247, 108, 0.11);
  padding: clamp(28px, 6vw, 64px);
  text-align: center;
}

.back-offer h1 {
  margin-inline: auto;
}

.back-offer .subheadline {
  margin-inline: auto;
}

.timer-box {
  display: grid;
  gap: 8px;
  width: min(360px, 100%);
  margin: 30px auto;
  border: 1px solid rgba(32, 247, 108, 0.3);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  padding: 18px;
}

.timer-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timer-box strong {
  color: var(--green);
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 1;
  text-shadow: 0 0 32px rgba(32, 247, 108, 0.34);
}

.back-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.back-benefits span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--mint);
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.back-checkout {
  width: min(520px, 100%);
  margin: 0 auto;
  min-height: 64px;
  font-size: 1rem;
}

.back-note {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 230ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .plan-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .benefit-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 18px, 1180px);
    min-height: 64px;
    margin-top: 8px;
    gap: 10px;
    padding: 9px 10px 9px 12px;
  }

  .brand img {
    max-width: min(168px, 42vw);
    height: 42px;
  }

  .brand span:last-child {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .section-pad {
    width: min(100% - 24px, 1180px);
    padding: 66px 0;
  }

  #beneficios,
  #planos,
  #depoimentos,
  #faq,
  #comprar {
    scroll-margin-top: 84px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy,
  .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .subheadline,
  .section-heading h2 {
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .final-actions,
  .trust-row {
    justify-content: center;
  }

  .trust-row span {
    max-width: 100%;
    text-align: center;
  }

  .benefit-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .deliverable-track {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .deliverable-card {
    min-width: 0;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .best-seller {
    position: static;
    width: fit-content;
    order: -1;
  }

  .plan-card {
    padding: 22px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .benefit-card,
  .deliverable-card,
  .timeline-item {
    text-align: center;
  }

  .icon-pill,
  .timeline-item span {
    margin-inline: auto;
  }
}

@media (max-width: 420px) {
  .brand img {
    max-width: min(146px, 40vw);
    height: 38px;
  }

  .header-cta {
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .plan-card,
  .fit-card,
  .faq-list details {
    padding-inline: 18px;
  }

  .back-hero {
    padding: 14px;
  }

  .back-offer {
    border-radius: 20px;
  }
}
