* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-heading: "Archivo Black", sans-serif;
  --font-body: "Sora", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #04070d;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(17, 178, 74, .42);
  }

  50% {
    box-shadow: 0 12px 48px rgba(17, 178, 74, .85);
  }
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .3;
    transform: scale(.6);
  }
}

@keyframes ctaRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 178, 74, .5), 0 16px 44px rgba(17, 178, 74, .45);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(17, 178, 74, 0), 0 20px 58px rgba(17, 178, 74, .75);
  }
}

@keyframes barBreathe {
  0%,
  100% {
    opacity: .55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes flagDrift {
  0%,
  100% {
    transform: scale(1.04) translate3d(-1.2%, 0, 0);
  }

  50% {
    transform: scale(1.08) translate3d(1.2%, -.8%, 0);
  }
}

@keyframes signalSweep {
  0% {
    transform: translateX(-38%) rotate(-10deg);
    opacity: 0;
  }

  22%,
  68% {
    opacity: .72;
  }

  100% {
    transform: translateX(38%) rotate(-10deg);
    opacity: 0;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: .28;
    transform: translate(-50%, -50%) scale(.97) rotate(0deg);
  }

  50% {
    opacity: .68;
    transform: translate(-50%, -50%) scale(1.03) rotate(7deg);
  }
}

@keyframes bookFloat {
  0%,
  100% {
    transform: translateY(0) rotate(.15deg);
  }

  50% {
    transform: translateY(-10px) rotate(-.25deg);
  }
}

@keyframes heroCtaPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .1),
      inset 0 0 0 1px rgba(17, 178, 74, .28),
      0 18px 42px rgba(0, 0, 0, .45),
      0 0 0 0 rgba(255, 212, 0, .2);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .12),
      inset 0 0 0 1px rgba(255, 212, 0, .32),
      0 22px 58px rgba(17, 178, 74, .22),
      0 0 0 8px rgba(255, 212, 0, 0);
  }
}

@keyframes timerExpiredShake {
  0%,
  100% {
    transform: translateX(0);
  }

  12%,
  36%,
  60% {
    transform: translateX(-3px);
  }

  24%,
  48%,
  72% {
    transform: translateX(3px);
  }
}

@keyframes expiredStripPulse {
  0%,
  100% {
    box-shadow: inset 0 -1px 0 rgba(255, 212, 0, .16);
  }

  50% {
    box-shadow: inset 0 -1px 0 rgba(255, 212, 0, .75), 0 0 32px rgba(198, 59, 45, .2);
  }
}

@keyframes urgentCtaFocus {
  0%,
  100% {
    filter: none;
    transform: translateY(0);
  }

  50% {
    filter: saturate(1.22) brightness(1.08);
    transform: translateY(-2px);
  }
}

@keyframes ctaEdgeScan {
  0% {
    transform: translateY(-105%);
  }

  100% {
    transform: translateY(105%);
  }
}

@keyframes offerBorderSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes offerSpotlightDrift {
  0%,
  100% {
    opacity: .55;
    transform: translate3d(-10%, -8%, 0) scale(.98);
  }

  50% {
    opacity: .9;
    transform: translate3d(10%, 8%, 0) scale(1.04);
  }
}

@keyframes offerSheen {
  0% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }

  18%,
  46% {
    opacity: .42;
  }

  100% {
    transform: translateX(260%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes alertPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 212, 0, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(255, 212, 0, .42);
  }
}

.page {
  width: 100%;
  overflow-x: hidden;
  padding-top: 71px;
  background: #04070d;
  color: #f4f8ff;
  font-family: var(--font-body);
  line-height: 1.6;
}

.top-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #009c3b 0 33%, #ffd400 33% 66%, #009c3b 66% 100%);
}

section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 84px 0;
  border-bottom: 1px solid rgba(120, 160, 220, .12);
}

section:not([data-screen-label="Hero"])::before {
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 13, .66), rgba(4, 7, 13, .34), rgba(4, 7, 13, .7)),
    linear-gradient(180deg, rgba(4, 7, 13, .62), rgba(4, 7, 13, .12) 46%, rgba(4, 7, 13, .72)),
    url("brasil-flag-waving-bg.png") center / cover no-repeat;
  content: "";
  opacity: .58;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.02);
  pointer-events: none;
}

section:not([data-screen-label="Hero"])::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(760px 420px at 50% 50%, rgba(17, 178, 74, .08), transparent 72%),
    linear-gradient(180deg, rgba(4, 7, 13, .32), rgba(4, 7, 13, .58));
  content: "";
  pointer-events: none;
}

section:not([data-screen-label="Hero"]):nth-of-type(odd)::before {
  background-position: 42% 50%;
}

section:not([data-screen-label="Hero"]):nth-of-type(even)::before {
  background-position: 62% 52%;
}

[data-screen-label="Faixa pos hero"]::before,
[data-screen-label="Faixa pos hero"]::after {
  display: none;
}

section > div,
footer > div {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.04em;
}

h2 {
  margin-bottom: 28px;
  font-size: 35px;
  font-weight: 400;
}

h2 span,
h3 + p b,
p b,
li b {
  color: #fff;
}

section h2 span,
[data-screen-label="Hero"] h1 span,
[data-screen-label="Oferta"] h2 span,
[data-screen-label="CTA Final"] h2 span {
  color: #ffd400;
}

p {
  color: #c3d3ee;
}

a {
  transition: transform .2s ease, filter .2s ease;
}

a:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

section > div > div:first-child > div:first-child,
[data-screen-label="Oferta"] > div > div:first-child > div:first-child,
[data-screen-label="Garantia"] > div > div:first-child > div:first-child,
[data-screen-label="FAQ"] > div > div:first-child > div:first-child {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

section > div > div:first-child > div:first-child > span:first-child,
[data-screen-label="Oferta"] > div > div:first-child > div:first-child > span:first-child,
[data-screen-label="Garantia"] > div > div:first-child > div:first-child > span:first-child,
[data-screen-label="FAQ"] > div > div:first-child > div:first-child > span:first-child {
  width: 26px;
  height: 2px;
  flex: none;
  background: #11b24a;
}

section > div > div:first-child > div:first-child > span:nth-child(2),
[data-screen-label="Oferta"] > div > div:first-child > div:first-child > span:nth-child(2),
[data-screen-label="Garantia"] > div > div:first-child > div:first-child > span:nth-child(2),
[data-screen-label="FAQ"] > div > div:first-child > div:first-child > span:nth-child(2) {
  color: #5ef29a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

[data-screen-label="Hero"] {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: #020508;
  border-bottom-color: rgba(17, 178, 74, .12);
}

[data-screen-label="Hero"]::before {
  position: absolute;
  top: -18%;
  right: 11%;
  z-index: 1;
  width: 34%;
  height: 138%;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, .08), rgba(17, 178, 74, .18), transparent);
  content: "";
  filter: blur(6px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: signalSweep 7.5s ease-in-out infinite;
}

[data-screen-label="Hero"]::after {
  position: absolute;
  right: 18%;
  bottom: 6%;
  z-index: 1;
  width: 460px;
  max-width: 36vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17, 178, 74, .18) 0 2px, transparent 3px),
    radial-gradient(circle at center, transparent 0 42%, rgba(255, 212, 0, .18) 43%, transparent 44%, transparent 58%, rgba(17, 178, 74, .18) 59%, transparent 60%),
    conic-gradient(from 210deg, transparent 0 58%, rgba(255, 212, 0, .24), rgba(17, 178, 74, .18), transparent 76% 100%);
  background-size: 26px 26px, 100% 100%, 100% 100%;
  content: "";
  filter: blur(.2px);
  opacity: .42;
  pointer-events: none;
  animation: orbitPulse 8s ease-in-out infinite;
}

[data-screen-label="Hero"] > div:first-child {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

[data-screen-label="Hero"] > div:first-child::before,
[data-screen-label="Hero"] > div:first-child::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

[data-screen-label="Hero"] > div:first-child::before {
  background:
    radial-gradient(ellipse 55% 80% at 72% 50%, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .76) 100%),
    radial-gradient(ellipse 70% 60% at 18% 50%, rgba(17, 178, 74, .08) 0%, transparent 70%),
    linear-gradient(90deg, rgba(2, 5, 8, .94) 0%, rgba(2, 5, 8, .78) 42%, rgba(2, 5, 8, .3) 72%, rgba(2, 5, 8, .7) 100%);
}

[data-screen-label="Hero"] > div:first-child::after {
  background: radial-gradient(ellipse 54% 62% at 69% 47%, rgba(17, 178, 74, .24), transparent 68%);
  mix-blend-mode: screen;
}

.hero-entropy canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .62;
}

.hero-entropy {
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-strip-placeholder {
  display: none;
}

.hero-offer-strip {
  position: fixed;
  top: 5px;
  right: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 66px;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(255, 212, 0, .18);
  background:
    linear-gradient(90deg, rgba(8, 36, 18, .98), rgba(24, 31, 16, .98) 56%, rgba(55, 16, 16, .96)),
    #07140c;
  color: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.timer-alert {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 9999;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  gap: 4px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 212, 0, .36);
  border-radius: 16px;
  background:
    radial-gradient(180px 120px at 92% 12%, rgba(255, 212, 0, .16), transparent 72%),
    radial-gradient(220px 150px at 8% 100%, rgba(17, 178, 74, .2), transparent 76%),
    linear-gradient(180deg, rgba(9, 25, 46, .96), rgba(4, 12, 24, .98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 20px 48px rgba(0, 0, 0, .42),
    0 0 34px rgba(17, 178, 74, .12);
  color: #f4f8ff;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 34px));
  transition: opacity .35s ease, transform .45s ease, border-color .25s ease, box-shadow .25s ease;
}

.timer-alert::before {
  position: absolute;
  inset: 12px auto 12px 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd400, #20d66a);
  content: "";
}

.timer-alert span {
  color: #5ef29a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.timer-alert strong {
  color: #ffd400;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.timer-alert em {
  color: #c8d7f0;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.timer-alert.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.timer-alert.is-visible strong {
  animation: alertPulse 1.8s ease-in-out infinite;
}

.timer-alert.is-expired {
  border-color: rgba(255, 80, 80, .5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 20px 48px rgba(0, 0, 0, .42),
    0 0 36px rgba(255, 80, 80, .16);
}

.hero-offer-strip span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd400;
  font-size: 13px;
}

.hero-offer-strip span:first-child::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c63b2d;
  box-shadow: 0 0 13px rgba(198, 59, 45, .75);
  content: "";
}

.hero-offer-strip.is-expired {
  background:
    linear-gradient(90deg, rgba(12, 40, 18, .98), rgba(65, 26, 10, .98) 54%, rgba(88, 18, 18, .98)),
    #07140c;
  animation: expiredStripPulse 1s ease-in-out 6;
}

.hero-offer-strip.is-expired .hero-countdown {
  animation: timerExpiredShake .48s ease-in-out 4;
}

.hero-offer-strip span:not(:first-child) {
  color: #c7d7cf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-countdown strong {
  display: grid;
  width: 42px;
  height: 48px;
  place-items: center;
  padding-top: 4px;
  border: 1px solid rgba(255, 212, 0, .2);
  border-radius: 10px;
  background: rgba(4, 7, 13, .78);
  color: #fff7c8;
  font-size: 19px;
  font-weight: 800;
  line-height: .9;
  box-shadow: inset 0 0 14px rgba(255, 212, 0, .08), 0 8px 22px rgba(0, 0, 0, .32);
}

.hero-countdown strong::after {
  color: #9eb6a8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;
}

.hero-countdown strong:first-child::after {
  content: "MIN";
}

.hero-countdown strong:last-child::after {
  content: "SEG";
}

.hero-countdown em {
  color: #ffd400;
  font-style: normal;
  font-size: 22px;
  font-weight: 800;
}

[data-screen-label="Hero"] > div:nth-of-type(3) {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  gap: clamp(26px, 3vw, 48px);
  align-items: center;
  max-width: 1260px;
  padding: clamp(62px, 6.4vw, 84px) 24px clamp(50px, 5.4vw, 68px);
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:first-child {
  max-width: 760px;
  transform: translateX(clamp(-58px, -2.9vw, -24px));
}

.hero-kicker {
  max-width: 640px;
  margin-bottom: 15px;
  color: #5ef29a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.45;
  text-transform: uppercase;
}

[data-screen-label="Hero"] h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(38px, 3.45vw, 50px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

[data-screen-label="Hero"] h1 > .hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #fff;
  white-space: nowrap;
}

[data-screen-label="Hero"] h1 > .hero-title-accent {
  color: #ffd400;
  background: linear-gradient(180deg, transparent 58%, rgba(255, 212, 0, .16) 58% 88%, transparent 88%);
  text-shadow: 0 0 28px rgba(255, 212, 0, .22);
}

[data-screen-label="Hero"] h1 + p {
  max-width: 660px;
  margin-bottom: 9px;
  color: #b0c8e8;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

[data-screen-label="Hero"] h1 + p + p {
  max-width: 600px;
  margin-bottom: 24px;
  color: #8faacf;
  font-size: 16px;
  line-height: 1.45;
}

.hero-source {
  max-width: 540px;
  margin: -10px 0 26px;
  padding: 12px 0 12px 18px;
  border-left: 2px solid rgba(255, 212, 0, .5);
  color: #d0ddf4;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-benefits,
[data-screen-label="O que voce ganha"] > div > div:nth-child(2) > div,
[data-screen-label="Para quem e"] > div > div:nth-child(2) > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid rgba(120, 160, 220, .14);
  color: #d6e3f8;
}

.hero-benefits {
  max-width: 540px;
  align-items: stretch;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.hero-benefits > div {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: flex-start;
  min-height: 70px;
  padding: 13px 10px;
  border: 1px solid rgba(120, 160, 220, .16);
  background: rgba(5, 14, 28, .58);
  backdrop-filter: blur(5px);
}

.hero-benefits > div > span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 178, 74, .34);
  border-radius: 50%;
  color: #19c65a;
  font-size: 12px;
  font-weight: 800;
}

.hero-benefits p {
  color: #98accd;
  font-size: 11.5px;
  line-height: 1.34;
}

.hero-benefits b {
  color: #fff;
  font-size: 12.5px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
}

.hero-price > span {
  color: #9fb2d4;
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.hero-price strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 3.85vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-price em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffd400;
  box-shadow: 0 10px 24px rgba(255, 212, 0, .25);
  color: #07140c;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.hero-price-note {
  margin-bottom: 14px;
  color: #9fb2d4;
  font-size: 13px;
  font-weight: 700;
}

[data-screen-label="O que voce ganha"] > div > div:nth-child(2) > div > span:first-child {
  flex: none;
  color: #11b24a;
  font-weight: 800;
}

[data-screen-label="Hero"] a,
[data-screen-label="Oferta"] a,
[data-screen-label="Urgencia"] a,
[data-screen-label="CTA Final"] a {
  position: relative;
  isolation: isolate;
  display: flex;
  max-width: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  padding: 20px 34px 20px 42px;
  border: 1px solid rgba(255, 212, 0, .34);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(17, 178, 74, .22), transparent 30%),
    linear-gradient(180deg, #0d2518, #06120c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(17, 178, 74, .18),
    0 18px 42px rgba(0, 0, 0, .42);
  color: #f7fbf4;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transform: translateZ(0);
  animation: none;
}

[data-screen-label="Hero"] a::before,
[data-screen-label="Oferta"] a::before,
[data-screen-label="Urgencia"] a::before,
[data-screen-label="CTA Final"] a::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 7px;
  background: linear-gradient(180deg, #ffd400, #19c65a 52%, #006f35);
  content: "";
}

[data-screen-label="Hero"] a::after,
[data-screen-label="Oferta"] a::after,
[data-screen-label="Urgencia"] a::after,
[data-screen-label="CTA Final"] a::after {
  position: absolute;
  inset: -40% auto -40% -30%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg) translateX(-130%);
  transition: opacity .28s ease, transform .7s ease;
}

[data-screen-label="Hero"] a:hover,
[data-screen-label="Oferta"] a:hover,
[data-screen-label="Urgencia"] a:hover,
[data-screen-label="CTA Final"] a:hover {
  border-color: rgba(255, 212, 0, .62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    inset 0 0 0 1px rgba(17, 178, 74, .28),
    0 22px 56px rgba(17, 178, 74, .18),
    0 18px 48px rgba(0, 0, 0, .5);
  transform: translateY(-2px);
  filter: none;
}

[data-screen-label="Hero"] a:hover {
  border-color: rgba(255, 212, 0, .78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 0 0 1px rgba(255, 212, 0, .32),
    0 28px 72px rgba(17, 178, 74, .28),
    0 14px 44px rgba(0, 0, 0, .55);
  transform: translateY(-3px);
}

[data-screen-label="Hero"] a:hover::after,
[data-screen-label="Oferta"] a:hover::after,
[data-screen-label="Urgencia"] a:hover::after,
[data-screen-label="CTA Final"] a:hover::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(460%);
}

[data-screen-label="Hero"] a span,
[data-screen-label="Oferta"] a span,
[data-screen-label="Urgencia"] a span,
[data-screen-label="CTA Final"] a span {
  color: #9eb6a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: .95;
  text-transform: none;
}

[data-screen-label="Hero"] a {
  max-width: 620px;
  min-height: 100px;
  margin-top: 4px;
  padding: 22px 34px 22px 46px;
  border-color: rgba(255, 212, 0, .72);
  border-radius: 12px;
  background:
    radial-gradient(240px 120px at 18% 50%, rgba(255, 212, 0, .14), transparent 70%),
    radial-gradient(260px 130px at 86% 50%, rgba(17, 178, 74, .34), transparent 72%),
    linear-gradient(90deg, rgba(17, 178, 74, .28), transparent 34%),
    linear-gradient(180deg, #154423, #07150d);
  box-shadow:
    inset 0 0 0 2px rgba(17, 178, 74, .34),
    0 0 0 3px rgba(255, 212, 0, .18),
    0 22px 44px rgba(17, 178, 74, .24),
    0 16px 44px rgba(0, 0, 0, .5);
  color: #fffef5;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  animation: heroCtaPulse 2.8s ease-in-out infinite;
}

[data-screen-label="Hero"] a.is-urgent {
  animation: heroCtaPulse 2.8s ease-in-out infinite, urgentCtaFocus .9s ease-in-out 6;
}

[data-screen-label="Hero"] a::before {
  width: 9px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .55), transparent),
    linear-gradient(180deg, #ffd400, #19c65a 52%, #006f35);
  animation: ctaEdgeScan 2.4s linear infinite;
}

[data-screen-label="Hero"] a::after {
  opacity: .6;
  transform: skewX(-18deg) translateX(150%);
  transition: opacity .28s ease, transform .75s ease;
}

[data-screen-label="Hero"] a span {
  color: #c2d6ca;
  font-size: 13px;
}

[data-screen-label="Oferta"] a > span:first-child {
  color: #9eb6a8;
  font-weight: 600;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.hero-avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.hero-avatars span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid rgba(244, 248, 255, .18);
  border-radius: 50%;
  background: linear-gradient(135deg, #0f5f31, #c1a33a);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .34);
}

.hero-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #ffd400, #4d3a12);
}

.hero-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #3c8fd8, #182a3d);
}

.hero-avatars span:nth-child(4) {
  background: linear-gradient(135deg, #a85b45, #23130d);
}

.hero-avatars span:nth-child(5) {
  background: linear-gradient(135deg, #88c597, #123b22);
}

.hero-proof p {
  color: #9fb2d4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-proof strong {
  display: block;
  color: #ffd400;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.1;
}

[data-screen-label="Faixa pos hero"] {
  overflow: visible;
  z-index: 2;
  padding: 0;
  border-bottom-color: rgba(255, 212, 0, .18);
  background: transparent;
}

.post-hero-banner {
  position: relative;
  display: grid;
  max-width: none;
  min-height: 304px;
  grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
  align-items: center;
  gap: 0;
  overflow: visible;
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(104deg, #020711 0 14%, transparent 14.2% 100%),
    radial-gradient(620px 260px at 74% 48%, rgba(255, 212, 0, .16), transparent 66%),
    linear-gradient(90deg, #08411f 0%, #0b8a38 50%, #14b64d 100%);
}

.post-hero-banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 5, 8, .88), rgba(2, 5, 8, .26) 37%, rgba(2, 5, 8, .06) 63%),
    linear-gradient(180deg, rgba(255, 212, 0, .08), transparent 24% 76%, rgba(2, 5, 8, .28));
  content: "";
  pointer-events: none;
}

.post-hero-banner::after {
  display: none;
}

.post-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 455px;
  padding: 18px 0 16px;
}

.post-hero-copy h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(23px, 1.72vw, 31px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.post-hero-copy a {
  display: inline-flex;
  width: min(100%, 360px);
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .26);
  color: #063f20;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.post-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 15px;
}

section > div.post-hero-banner > div:first-child > div:first-child {
  margin-bottom: 0;
}

.post-hero-points span {
  color: rgba(244, 248, 255, .76);
  font-size: 11px;
  font-weight: 600;
}

.post-hero-book {
  position: relative;
  z-index: 5;
  align-self: stretch;
  min-height: 304px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.post-hero-book::before {
  position: absolute;
  left: clamp(80px, 13vw, 210px);
  bottom: -36px;
  z-index: 1;
  width: min(500px, 36vw);
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .64), rgba(0, 0, 0, 0) 72%);
  content: "";
  filter: blur(12px);
  transform: rotate(-4deg);
  pointer-events: none;
}

.post-hero-book img {
  position: absolute;
  left: clamp(30px, 5.2vw, 104px);
  top: -84px;
  width: min(520px, 35vw);
  max-width: none;
  height: auto;
  image-rendering: auto;
  filter:
    drop-shadow(30px 36px 34px rgba(0, 0, 0, .58))
    drop-shadow(0 16px 18px rgba(0, 0, 0, .36));
  backface-visibility: hidden;
  transform: perspective(1200px) rotateY(-10deg) rotateX(3deg) rotateZ(8deg);
  transform-origin: center bottom;
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2) {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2)::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(610px, 112%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 212, 0, .22);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(17, 178, 74, .16), transparent 58%),
    conic-gradient(from 20deg, transparent 0 22%, rgba(17, 178, 74, .24), transparent 34% 62%, rgba(255, 212, 0, .2), transparent 74% 100%);
  content: "";
  opacity: .62;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbitPulse 9s ease-in-out infinite reverse;
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2)::after {
  position: absolute;
  top: 13%;
  right: 8%;
  z-index: 3;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, .85), rgba(17, 178, 74, .72), transparent);
  box-shadow:
    0 58px 0 rgba(17, 178, 74, .18),
    -42px 116px 0 rgba(255, 212, 0, .14);
  content: "";
  opacity: .7;
  pointer-events: none;
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2) > div:first-child {
  position: absolute;
  inset: -26%;
  background: radial-gradient(ellipse 62% 70% at 50% 48%, rgba(17, 178, 74, .32) 0%, rgba(0, 190, 160, .16) 34%, transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

[data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2) > div:nth-child(2) {
  position: absolute;
  bottom: 6%;
  left: 13%;
  width: 74%;
  height: 30%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .55), transparent 75%);
  filter: blur(20px);
  pointer-events: none;
}

[data-screen-label="Hero"] img {
  position: relative;
  z-index: 2;
  display: block;
  width: 540px;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .75)) drop-shadow(0 0 60px rgba(17, 178, 74, .4));
  backface-visibility: hidden;
  animation: bookFloat 6.8s ease-in-out infinite;
}

[data-screen-label="Abertura"],
[data-screen-label="Para quem e"],
[data-screen-label="CTA Final"] {
  background: linear-gradient(180deg, #04070d, #0a1832);
}

[data-screen-label="Abertura"] > div,
[data-screen-label="FAQ"] > div,
[data-screen-label="Urgencia"] > div {
  max-width: 780px;
}

[data-screen-label="Abertura"] > div > div:last-child,
[data-screen-label="Urgencia"] > div > div > div:nth-of-type(3) {
  display: grid;
  gap: 22px;
  color: #c3d3ee;
  font-size: 17.5px;
}

[data-screen-label="Abertura"] p:nth-child(3) {
  padding-left: 22px;
  border-left: 3px solid #11b24a;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

[data-screen-label="Abertura"] i {
  color: #9fb2d4;
}

[data-screen-label="O que voce ganha"] > div {
  max-width: 1000px;
}

[data-screen-label="O que voce ganha"] > div > div:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 24px;
}

[data-screen-label="Para quem e"] > div > div:nth-child(2) > div > span:first-child {
  width: 9px;
  height: 9px;
  flex: none;
  margin-top: 9px;
  transform: rotate(45deg);
  background: #11b24a;
}

[data-screen-label="Para quem e"] > div > div:nth-child(2) > div:nth-child(even) > span:first-child {
  background: #ffd400;
}

[data-screen-label="O que tem dentro"] > div {
  max-width: 860px;
}

[data-screen-label="O que tem dentro"] > div > div:first-child {
  max-width: 720px;
  margin-bottom: 30px;
}

[data-screen-label="O que tem dentro"] > div > div:first-child p {
  color: #aebfdb;
  font-size: 16px;
}

[data-screen-label="O que tem dentro"] > div > div:nth-child(2) > div {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
  padding: 19px 0;
  border-top: 1px solid rgba(120, 160, 220, .1);
}

[data-screen-label="O que tem dentro"] > div > div:nth-child(2) > div > span {
  display: block;
  width: 18px;
  height: 2px;
  flex: none;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #19c65a, rgba(255, 212, 0, .72));
  opacity: .82;
}

[data-screen-label="O que tem dentro"] h3 {
  margin-bottom: 4px;
  color: #f4f8ff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.025em;
}

[data-screen-label="O que tem dentro"] h3 + p {
  max-width: 660px;
  color: #aebfdb;
  font-size: 15px;
  line-height: 1.58;
}

[data-screen-label="O que tem dentro"] > div > p {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 160, 220, .1);
  color: #9fb2d4;
  font-size: 15px;
}

[data-screen-label="Posicionamento"] {
  background: radial-gradient(820px 460px at 50% 100%, rgba(17, 178, 74, .13), transparent 62%), linear-gradient(180deg, #060c18, #0a1832);
  text-align: center;
}

[data-screen-label="Posicionamento"] > div {
  max-width: 1040px;
}

[data-screen-label="Posicionamento"] h2 {
  font-size: clamp(22px, 3.9vw, 40px);
  white-space: nowrap;
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(2) {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px auto 0;
  border-top: 1px solid rgba(120, 160, 220, .14);
  border-left: 1px solid rgba(120, 160, 220, .14);
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(2) > span {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  border-right: 1px solid rgba(120, 160, 220, .14);
  border-bottom: 1px solid rgba(120, 160, 220, .14);
  color: #eaf2ff;
  font-weight: 700;
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(2) > span > span {
  width: 11px;
  height: 11px;
  flex: none;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ffd400, #11b24a);
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(3) {
  margin-top: 48px;
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(3) > span {
  display: inline-block;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #11b24a, #ffd400);
}

[data-screen-label="Posicionamento"] > div > div:nth-of-type(3) p {
  margin-top: 16px;
  background: linear-gradient(90deg, #11b24a, #ffd400);
  color: transparent;
  font-size: clamp(22px, 3.4vw, 30px);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -.025em;
  -webkit-background-clip: text;
  background-clip: text;
}

[data-screen-label="Posicionamento"] > div > p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: #eaf2ff;
  font-size: clamp(17px, 2.3vw, 21px);
  font-style: italic;
  font-weight: 600;
}

[data-screen-label="Oferta"] {
  background:
    radial-gradient(680px 420px at 74% 44%, rgba(17, 178, 74, .16), transparent 64%),
    radial-gradient(760px 520px at 50% 120%, rgba(255, 212, 0, .1), transparent 62%),
    linear-gradient(180deg, #04070d, #04101f);
}

[data-screen-label="Oferta"]::after {
  background:
    radial-gradient(460px 300px at 68% 38%, rgba(17, 178, 74, .12), transparent 70%),
    radial-gradient(360px 240px at 36% 58%, rgba(255, 212, 0, .06), transparent 70%),
    linear-gradient(180deg, rgba(4, 7, 13, .18), rgba(4, 7, 13, .56));
  opacity: .9;
  animation: offerSpotlightDrift 7s ease-in-out infinite;
}

.offer-wrap {
  max-width: 1120px;
}

.offer-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.offer-card {
  position: relative;
  isolation: isolate;
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, .16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 24, 50, .96), rgba(5, 12, 27, .98)),
    #071020;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(17, 178, 74, .06),
    0 0 52px rgba(17, 178, 74, .08);
}

.offer-card::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 145%;
  aspect-ratio: 1;
  background:
    conic-gradient(from 0deg, transparent 0 20%, rgba(17, 178, 74, .72), rgba(255, 212, 0, .78), transparent 42% 100%);
  content: "";
  opacity: .62;
  transform: translate(-50%, -50%);
  animation: offerBorderSpin 9s linear infinite;
}

.offer-card::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 13px;
  background:
    radial-gradient(520px 300px at 74% 18%, rgba(17, 178, 74, .18), transparent 66%),
    linear-gradient(180deg, rgba(10, 24, 50, .98), rgba(5, 12, 27, .99)),
    #071020;
  content: "";
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-card-label::after {
  position: absolute;
  inset: 0 auto 0 -26%;
  z-index: -1;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  content: "";
  animation: offerSheen 4.8s ease-in-out infinite;
}

.offer-card-label {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(120, 160, 220, .14);
  background: linear-gradient(90deg, rgba(17, 178, 74, .12), rgba(255, 212, 0, .08));
  color: #ffd400;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.offer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  gap: 42px;
  padding: 42px 42px 36px;
  align-items: center;
}

.offer-included {
  display: grid;
  gap: 18px;
}

.offer-included > div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.offer-included > div > span {
  flex: none;
  width: 18px;
  margin-top: 2px;
  color: #20d66a;
  font-size: 16px;
  font-weight: 800;
}

.offer-included p {
  color: #dbe7ff;
  font-size: 16px;
  line-height: 1.55;
}

.offer-value {
  position: relative;
  isolation: isolate;
  width: min(100%, 330px);
  min-height: 452px;
  justify-self: center;
  overflow: hidden;
  padding: 0 24px 28px;
  border: 1px solid rgba(255, 212, 0, .28);
  border-radius: 34px 34px 42px 42px;
  background:
    radial-gradient(190px 170px at 88% 4%, rgba(17, 178, 74, .2), transparent 72%),
    radial-gradient(220px 220px at 22% 106%, rgba(255, 212, 0, .12), transparent 68%),
    linear-gradient(180deg, #0d2342 0%, #07162c 44%, #050d1d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -18px 34px rgba(0, 0, 0, .24),
    0 28px 58px rgba(0, 0, 0, .42),
    0 0 42px rgba(17, 178, 74, .08);
  transform: translateZ(0);
}

.offer-value::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 22%),
    linear-gradient(90deg, rgba(17, 178, 74, .22), transparent 34% 72%, rgba(255, 212, 0, .12));
  content: "";
  opacity: .62;
  pointer-events: none;
}

.offer-value::after {
  position: absolute;
  right: 22px;
  bottom: -42px;
  left: 22px;
  z-index: 0;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .6), transparent 72%);
  content: "";
  filter: blur(14px);
}

.offer-value > * {
  position: relative;
  z-index: 1;
}

.offer-value-discount {
  position: absolute;
  top: 22px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 160, .8);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe35b, #ffd400 56%, #f1b900);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, .34),
    0 0 28px rgba(255, 212, 0, .28);
  color: #06120b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
  transform: rotate(11deg);
}

.offer-value-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 18px 0 18px -10px;
  padding: 0 18px;
  border: 1px solid rgba(17, 178, 74, .34);
  border-radius: 999px;
  background: rgba(242, 247, 255, .96);
  color: #06172b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

.offer-value-head {
  padding: 0 0 20px;
  text-align: center;
}

.offer-value-head > span {
  display: block;
  color: #eaf2ff;
  font-size: 13px;
  font-weight: 700;
}

.offer-value-head strong {
  display: block;
  margin: 3px 0 4px;
  color: #ffd400;
  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
  text-shadow:
    0 8px 26px rgba(255, 212, 0, .24),
    0 1px 0 rgba(255, 255, 255, .12);
}

.offer-value-head p {
  max-width: 210px;
  margin: 0 auto;
  color: #9fb2d4;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.value-list-title {
  margin: 0 0 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 160, 220, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.value-list {
  display: grid;
  gap: 9px;
}

.value-list > div,
.value-current {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
}

.value-list span:first-child {
  color: #c6d7f5;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.value-list span:last-child {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.value-divider {
  height: 1px;
  margin: 17px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(17, 178, 74, .45), rgba(255, 212, 0, .42), transparent);
}

.value-current {
  padding: 12px 14px;
  border: 1px solid rgba(17, 178, 74, .42);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(17, 178, 74, .16), rgba(17, 178, 74, .04)),
    rgba(2, 15, 24, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.value-current span:first-child {
  color: #5ef29a;
  font-size: 12.5px;
  font-weight: 800;
}

.value-current span:last-child {
  color: #ffd400;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.offer-value-micro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 17px;
}

.offer-value-micro span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dbe7ff;
  font-size: 11px;
  font-weight: 700;
}

.offer-value-micro span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #20d66a;
  box-shadow: 0 0 10px rgba(32, 214, 106, .5);
  content: "";
}

.offer-price {
  padding: 0 36px 42px;
  background: transparent;
  text-align: center;
}

[data-screen-label="Oferta"] a,
[data-screen-label="CTA Final"] a {
  margin: 0 auto;
  padding: 22px 40px;
  font-size: 20px;
}

[data-screen-label="Urgencia"] {
  padding: 80px 0;
  background: radial-gradient(900px 360px at 50% -10%, rgba(220, 60, 0, .13), transparent 58%), linear-gradient(180deg, #05060d, #070b14);
  text-align: center;
}

[data-screen-label="Urgencia"] > div > div {
  position: relative;
  padding-top: 24px;
}

[data-screen-label="Urgencia"] > div > div > div:first-child {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 185, 0, .9), rgba(255, 100, 0, .7), rgba(255, 185, 0, .9), transparent);
  animation: barBreathe 2.6s ease-in-out infinite;
}

[data-screen-label="Urgencia"] > div > div > div:nth-child(2) {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #ff7070;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

[data-screen-label="Urgencia"] > div > div > div:nth-child(2) span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: dotBlink 1.1s ease-in-out infinite;
}

[data-screen-label="Urgencia"] h2 {
  color: #fff;
  font-size: 34px;
}

[data-screen-label="Urgencia"] > div > div > p {
  max-width: 540px;
  margin: 28px auto 0;
  padding-left: 22px;
  border-left: 3px solid #ffb900;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

[data-screen-label="Urgencia"] a {
  display: inline-flex;
  margin-top: 30px;
}

[data-screen-label="Garantia"] > div {
  max-width: 960px;
}

[data-screen-label="Garantia"] > div > div:first-child,
[data-screen-label="FAQ"] > div > div:first-child {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

[data-screen-label="Garantia"] > div > div:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(120, 160, 220, .14);
}

[data-screen-label="Garantia"] > div > div:nth-child(2) > div {
  padding: 30px 26px;
  border-right: 1px solid rgba(120, 160, 220, .14);
  text-align: center;
}

[data-screen-label="Garantia"] > div > div:nth-child(2) > div:last-child {
  border-right: 0;
}

[data-screen-label="Garantia"] h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

[data-screen-label="Garantia"] h3 + p {
  color: #9fb2d4;
  font-size: 14.5px;
}

[data-screen-label="Garantia"] > div > div:nth-child(2) > div > div {
  margin-bottom: 12px;
  font-size: 28px;
}

details {
  border-top: 1px solid rgba(120, 160, 220, .14);
}

details:last-child {
  border-bottom: 1px solid rgba(120, 160, 220, .14);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

.chev {
  flex: none;
  color: #ffd400;
  font-size: 24px;
  transition: transform .2s;
}

details[open] summary .chev {
  transform: rotate(45deg);
}

details p {
  padding: 0 4px 22px;
  color: #9fb2d4;
  font-size: 15.5px;
}

[data-screen-label="CTA Final"] {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: radial-gradient(720px 460px at 50% 0%, rgba(17, 178, 74, .2), transparent 60%), linear-gradient(180deg, #0a1832, #04070d);
}

[data-screen-label="CTA Final"] > div {
  max-width: 1040px;
  text-align: center;
}

[data-screen-label="CTA Final"] h2 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(28px, 3vw, 34px);
  white-space: nowrap;
}

[data-screen-label="CTA Final"] > div > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
  border-top: 1px solid rgba(120, 160, 220, .14);
  text-align: left;
}

[data-screen-label="CTA Final"] > div > div:first-of-type > div {
  padding: 26px 28px 26px 0;
}

[data-screen-label="CTA Final"] > div > div:first-of-type > div:first-child {
  border-right: 1px solid rgba(120, 160, 220, .14);
}

[data-screen-label="CTA Final"] > div > div:first-of-type > div:nth-child(2) {
  padding-left: 28px;
}

[data-screen-label="CTA Final"] > div > div:first-of-type span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff7070;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

[data-screen-label="CTA Final"] > div > div:first-of-type > div:nth-child(2) span {
  color: #5ef29a;
}

[data-screen-label="CTA Final"] > div > p:nth-of-type(1) {
  max-width: 760px;
  margin: 0 auto 6px;
  color: #d6e3f8;
  font-size: 18px;
  white-space: nowrap;
}

[data-screen-label="CTA Final"] > div > p:nth-of-type(2) {
  margin-bottom: 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

[data-screen-label="CTA Final"] > div > div:last-child {
  display: grid;
  max-width: 680px;
  gap: 18px;
  margin: 42px auto 0;
  text-align: left;
}

footer {
  padding: 36px 0;
  border-top: 1px solid rgba(120, 160, 220, .12);
  background: #04070d;
  color: #9fb2d4;
  font-size: 13px;
  text-align: center;
}

footer p:last-child {
  max-width: 760px;
  margin: 14px auto 0;
  color: #5d6f8c;
  font-size: 12px;
}

@media (max-width: 1040px) {
  [data-screen-label="CTA Final"] h2 {
    font-size: clamp(25px, 3vw, 32px);
  }

}

@media (max-width: 820px) {
  .page {
    padding-top: 88px;
  }

  section {
    padding: 64px 0;
  }

  [data-screen-label="Hero"] > div:nth-of-type(3),
  [data-screen-label="O que voce ganha"] > div > div:nth-child(2),
  .offer-content,
  [data-screen-label="Garantia"] > div > div:nth-child(2),
  [data-screen-label="CTA Final"] > div > div:first-of-type {
    grid-template-columns: 1fr;
  }

  [data-screen-label="Hero"] h1 {
    font-size: 38px;
  }

  [data-screen-label="Hero"] h1 > .hero-title-line {
    width: auto;
    white-space: normal;
  }

  [data-screen-label="Hero"] > div:nth-of-type(3) > div:first-child {
    max-width: none;
    transform: none;
  }

  [data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2) {
    min-height: 360px;
  }

  [data-screen-label="Hero"]::before {
    right: -8%;
    width: 58%;
    opacity: .42;
  }

  [data-screen-label="Hero"]::after,
  [data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2)::before {
    max-width: 72vw;
    opacity: .34;
  }

  .hero-offer-strip {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 18px 12px;
    text-align: center;
  }

  .hero-countdown strong {
    width: 39px;
    height: 45px;
  }

  .hero-benefits {
    flex-direction: column;
  }

  .hero-price {
    flex-wrap: wrap;
  }

  .hero-price strong {
    font-size: 42px;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .post-hero-banner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 24px 0;
  }

  .post-hero-copy {
    max-width: 620px;
  }

  .post-hero-copy h2 {
    max-width: 560px;
    font-size: 29px;
  }

  .post-hero-book {
    min-height: 390px;
  }

  .post-hero-book::before {
    right: 50%;
    left: auto;
    bottom: 0;
    width: min(430px, 90vw);
    transform: translateX(50%) rotate(-5deg);
  }

  .post-hero-book img {
    left: 50%;
    right: auto;
    top: 0;
    bottom: auto;
    width: min(420px, 92vw);
    transform: translateX(-50%) perspective(1000px) rotateY(-8deg) rotateX(3deg) rotateZ(6deg);
  }

  [data-screen-label="Posicionamento"] h2 {
    white-space: normal;
  }

  [data-screen-label="Posicionamento"] > div > div:nth-of-type(2) {
    grid-template-columns: 1fr;
  }

  [data-screen-label="CTA Final"] > div > div:first-of-type > div:first-child {
    padding-left: 0;
    border-left: 0;
    border-right: 0;
  }

  [data-screen-label="CTA Final"] > div > div:first-of-type > div:nth-child(2) {
    padding-left: 0;
  }

  .offer-value {
    width: min(100%, 360px);
    min-height: auto;
    margin: 0 auto;
    padding: 0 22px 26px;
  }

  .offer-content {
    gap: 30px;
    padding: 32px 24px;
  }

  .offer-price {
    padding: 0 24px 34px;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 104px;
  }

  .timer-alert {
    right: 12px;
    bottom: 14px;
    width: calc(100vw - 24px);
    padding: 15px 16px 15px 18px;
  }

  .timer-alert strong {
    font-size: 21px;
  }

  [data-screen-label="CTA Final"] h2,
  [data-screen-label="CTA Final"] > div > p:nth-of-type(1) {
    white-space: normal;
  }

  [data-screen-label="Hero"] > div:nth-of-type(3) {
    padding-top: 48px;
  }

  [data-screen-label="Hero"] h1 {
    font-size: 34px;
  }

  [data-screen-label="Hero"] h1 + p {
    font-size: 18px;
  }

  [data-screen-label="Hero"] h1 + p + p {
    font-size: 16px;
  }

  [data-screen-label="Hero"] a {
    max-width: none;
    min-height: 96px;
    padding: 20px 24px 20px 34px;
    font-size: 18px;
  }

  .hero-price strong {
    font-size: 38px;
  }

  .offer-value {
    width: min(100%, 330px);
    border-radius: 28px 28px 36px 36px;
  }

  .offer-value-head strong {
    font-size: 48px;
  }

  .value-list > div,
  .value-current {
    gap: 10px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 10px;
  }

  .post-hero-banner {
    padding-top: 36px;
  }

  .post-hero-copy h2 {
    font-size: 25px;
  }

  .post-hero-copy a {
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
  }

  .post-hero-points {
    gap: 9px 16px;
  }

  .post-hero-book {
    min-height: 340px;
  }

  .post-hero-book img {
    top: 0;
    width: min(380px, 94vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-screen-label="Hero"]::before,
  [data-screen-label="Hero"]::after,
  [data-screen-label="Hero"] > div:nth-of-type(3) > div:nth-child(2)::before,
  [data-screen-label="Hero"] a,
  [data-screen-label="Hero"] a::before,
  [data-screen-label="Hero"] img,
  [data-screen-label="Oferta"]::after,
  .offer-card::before,
  .offer-card-label::after,
  .timer-alert.is-visible strong {
    animation: none;
  }
}
