:root {
  --navy: #dff2ff;
  --navy-deep: #b9dff6;
  --navy-light: #ccecff;
  --cyan: #1978b8;
  --green: #2c9fc0;
  --yellow: #ffd166;
  --paper: #f7fcff;
  --ink: #13384f;
  --muted: #527083;
  --dark-muted: #42687e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 0.99;
  text-align: center;
}

h1 span,
h2 span {
  color: var(--cyan);
}

.container {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.container--narrow {
  width: min(900px, calc(100% - 48px));
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.section-light {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.section-label {
  margin-bottom: 18px;
  color: #27cdb3;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-align: center;
}

.section-description {
  max-width: 690px;
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
}

.section-description--dark {
  color: var(--dark-muted);
}

.image-slot {
  min-width: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px dashed rgba(73, 222, 198, 0.34);
}

.section-light .image-slot,
.image-ribbon .image-slot {
  background: #fbfeff;
  border-color: #add7df;
}

.announcement {
  position: relative;
  z-index: 40;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  color: #253100;
  background: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #16c97d;
  box-shadow: 0 0 0 5px rgba(22, 201, 125, 0.18);
}

/* PRIMEIRA SEÇÃO */
.hero {
  min-height: 1050px;
  padding: 74px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(rgba(57, 205, 197, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 205, 197, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 10% 14%, rgba(18, 184, 165, 0.2), transparent 29%),
    linear-gradient(138deg, #07374b 0%, #072a3e 45%, #062337 100%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(2, 20, 31, 0.25));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 64px);
  grid-auto-rows: 64px;
  gap: 2px;
  transform: rotate(0.001deg);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.35), #000 42%, rgba(0, 0, 0, 0.42));
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.35), #000 42%, rgba(0, 0, 0, 0.42));
}

.hero-grid--right {
  top: 94px;
  right: -18px;
  opacity: 0.78;
}

.hero-grid--left {
  bottom: 112px;
  left: -115px;
  opacity: 0.19;
  transform: rotate(180deg);
}

.hero-grid span {
  border: 1px solid rgba(70, 218, 210, 0.14);
  background: rgba(65, 216, 207, 0.075);
}

.hero-grid span:nth-child(2),
.hero-grid span:nth-child(5),
.hero-grid span:nth-child(7),
.hero-grid span:nth-child(9),
.hero-grid span:nth-child(13),
.hero-grid span:nth-child(17) {
  background: rgba(58, 211, 204, 0.17);
  box-shadow: inset 0 0 22px rgba(62, 224, 214, 0.035);
}

.hero-grid span:nth-child(1),
.hero-grid span:nth-child(4),
.hero-grid span:nth-child(6),
.hero-grid span:nth-child(10),
.hero-grid span:nth-child(12),
.hero-grid span:nth-child(19) {
  opacity: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d5e7ed;
  background: rgba(0, 10, 20, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
}

.stars {
  color: #ffca28;
  letter-spacing: 0.08em;
}

.top-proof {
  margin-bottom: 20px;
  color: #55e8d2;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto 42px;
  font-size: clamp(2.9rem, 5.6vw, 5.15rem);
  line-height: 0.98;
  text-align: center;
}

.hero-product {
  width: min(920px, 94vw);
  height: auto;
  min-height: 0;
  margin: 0 auto 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-product img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__description {
  max-width: 700px;
  margin-bottom: 28px;
  color: #bed0d8;
  font-size: 1rem;
  line-height: 1.62;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button:focus-visible,
.modal__close:focus-visible,
.exit-offer__checkout:focus-visible,
.exit-offer__decline:focus-visible,
.basic-upgrade__accept:focus-visible,
.basic-upgrade__decline:focus-visible,
.purchase-toast__close:focus-visible,
.accordion-item button:focus-visible,
.carousel__arrow:focus-visible {
  outline: 3px solid rgba(49, 224, 191, 0.6);
  outline-offset: 3px;
}

.button--primary {
  color: #fafafa;
  background: linear-gradient(180deg, #3be89f, #16ce80);
  box-shadow: 0 12px 29px rgba(20, 214, 135, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.button--secondary {
  color: white;
  background: #667581;
}

.delivery {
  margin: 18px 0 32px;
  color: #92adb8;
  font-size: 0.78rem;
}

.trust-row {
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge {
  display: flex;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(110, 218, 210, 0.16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-badge--guarantee {
  border-color: rgba(52, 226, 159, 0.27);
  background: linear-gradient(145deg, rgba(32, 218, 139, 0.105), rgba(255, 255, 255, 0.025));
}

.trust-badge__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(71, 224, 204, 0.2);
  border-radius: 10px;
  color: #58e3cf;
  background: rgba(53, 220, 194, 0.1);
}

.trust-badge--guarantee .trust-badge__icon {
  border-color: rgba(46, 229, 148, 0.25);
  color: #46e39a;
  background: rgba(32, 218, 139, 0.12);
}

.trust-badge__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.trust-badge__text strong,
.trust-badge__text small {
  display: block;
}

.trust-badge__text strong {
  color: #f1fbff;
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.2;
}

.trust-badge__text small {
  color: #8faeb9;
  font-size: 0.63rem;
  line-height: 1.25;
}

/* PRÉVIA */
.preview {
  min-height: 940px;
  padding: 106px 0 0;
  overflow: hidden;
  background: #f3fbff;
}

.preview h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.preview .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #007b78;
}

.preview .section-label::before,
.preview .section-label::after {
  width: 31px;
  height: 1px;
  background: #b69852;
  content: "";
}

.preview .section-description {
  max-width: 760px;
  margin-bottom: 40px;
  color: #153949;
  font-weight: 600;
}

.map-preview {
  position: relative;
}

.map-preview__viewer {
  position: relative;
  width: min(540px, calc(100% - 70px));
  aspect-ratio: 1.42 / 1;
  margin: 0 auto;
  outline: none;
}

.map-preview__viewer:focus-visible {
  outline: 3px solid rgba(8, 154, 148, 0.45);
  outline-offset: 6px;
}

.map-preview__slide {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  margin: 0;
  visibility: hidden;
  border-radius: 2px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 13px 35px rgba(9, 48, 67, 0.08);
  transform: translateX(18px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.map-preview__slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.map-preview__slide img,
.map-preview__ticker-item img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.map-preview__slide.is-loaded img,
.map-preview__ticker-item.is-loaded img {
  opacity: 1;
}

.map-preview__placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px dashed #afd6df;
  color: #7899a5;
  background:
    linear-gradient(rgba(43, 163, 161, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 163, 161, 0.045) 1px, transparent 1px),
    #fbfeff;
  background-size: 28px 28px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.is-loaded>.map-preview__placeholder {
  display: none;
}

.map-preview__arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 3px;
  border: 0;
  border-radius: 50%;
  color: #0b3243;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 40, 55, 0.16);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.map-preview__arrow:hover {
  box-shadow: 0 10px 26px rgba(7, 40, 55, 0.23);
  transform: translateY(-50%) scale(1.06);
}

.map-preview__arrow:focus-visible {
  outline: 3px solid rgba(8, 154, 148, 0.5);
  outline-offset: 3px;
}

.map-preview__arrow--prev {
  left: -18px;
}

.map-preview__arrow--next {
  right: -18px;
}

.map-preview__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.map-preview__ticker {
  width: 100vw;
  margin-top: 22px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.map-preview__ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: map-preview-scroll 46s linear infinite;
  will-change: transform;
}

.map-preview__ticker:hover .map-preview__ticker-track {
  animation-play-state: paused;
}

.map-preview__ticker-group {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
}

.map-preview__ticker-item {
  position: relative;
  display: block;
  width: clamp(238px, 25vw, 320px);
  aspect-ratio: 1.42 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d3e7ed;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(9, 48, 67, 0.07);
  cursor: pointer;
}

.map-preview__ticker-item:focus-visible {
  outline: 3px solid rgba(8, 154, 148, 0.5);
  outline-offset: -3px;
}

@keyframes map-preview-scroll {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-preview__ticker-track {
    animation-play-state: paused;
  }
}

/* BENEFÍCIOS */
.benefits {
  min-height: 720px;
  padding: 92px 0 86px;
  background: linear-gradient(180deg, #061b29, #061f2d);
}

.benefits h2 {
  max-width: 900px;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

.benefits .section-description {
  max-width: 680px;
  margin-bottom: 38px;
}

.benefits p {
  font-size: 15px;
}

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

.benefit-card {
  min-height: 250px;
  padding: 18px 17px 22px;
  border: 1px solid rgba(56, 218, 205, 0.22);
  border-radius: 15px;
  background: rgba(8, 44, 59, 0.62);
}

.benefit-image {
  position: relative;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid rgba(51, 211, 205, 0.32);
  border-radius: 17px;
}



.benefit-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
}


.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.benefit-card p {
  margin-bottom: 0;
  color: #b2c8d1;
  font-size: 0.86rem;
  line-height: 1.6;
}

/* MÓDULOS */
.modules {
  min-height: 960px;
  padding: 112px 0 115px;
  background: #092b3d;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.module-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(60, 210, 189, 0.09);
  border-radius: 10px;
  background: rgba(2, 24, 37, 0.43);
}

.module-card>span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #063f3e;
  background: #55e4cc;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 0 20px rgba(43, 222, 190, 0.2);
}

.module-card h3 {
  margin-bottom: 5px;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.module-card p {
  margin-bottom: 0;
  color: #9bb4c0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.reference-note {
  width: fit-content;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(45, 213, 188, 0.15);
  border-radius: 999px;
  color: #8caebb;
  font-size: 0.77rem;
  text-align: center;
}

/* PÚBLICO */
.audience {
  min-height: 1000px;
  padding: 40px 0 96px;
  background: #041a28;
}

.audience .container--narrow {
  width: min(800px, calc(100% - 48px));
}

.audience .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.audience .section-label::before,
.audience .section-label::after {
  width: 30px;
  height: 1px;
  background: rgba(39, 205, 179, 0.55);
  content: "";
}

.audience h2 {
  max-width: 800px;
  margin-bottom: 36px;
  font-size: clamp(2.5rem, 5.2vw, 3.6rem);
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-card {
  display: grid;
  min-height: 214px;
  grid-template-columns: 184px 1fr;
  align-items: center;
  gap: 47px;
  padding: 14px 46px;
  border: 1px solid rgba(57, 201, 208, 0.34);
  border-radius: 23px;
  background: linear-gradient(90deg, rgba(6, 34, 50, 0.94), rgba(3, 24, 37, 0.84));
}

.audience-image {
  width: 184px;
  height: 184px;
  overflow: hidden;
  border-radius: 16px;
  background: #06263a;
}

.audience-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.audience-card i {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 12px;
  background: #26d5bd;
}

.audience-card p {
  margin: 0;
  color: #b3cbd5;
  font-size: 1rem;
  line-height: 1.5;
}

/* O QUE RECEBE */
.receive {
  min-height: 930px;
  padding: 120px 0 125px;
}

.receive-panel {
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
  padding: 34px;
  border-top: 3px solid #42d9cf;
  border-radius: 13px;
  background: white;
  box-shadow: 0 23px 62px rgba(13, 51, 67, 0.15);
}

.receive-image {
  position: relative;
  width: min(100%, 390px);
  height: auto;
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #edf8fb;
  box-shadow: 0 18px 45px rgba(13, 51, 67, 0.16);
}

.receive-image__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  background: #edf8fb;
}

.receive-list {
  display: grid;
  gap: 10px;
}

.receive-list>div {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #e5eef1;
  color: #5a717a;
  line-height: 1.48;
}

.receive-list>div:last-child {
  border-bottom: 0;
}

.receive-list b {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #13c783;
}

.receive-list span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.receive-list strong {
  color: #082839;
}

/* BÔNUS */
.bonuses {
  min-height: 750px;
  padding: 110px 0 100px;
  background: linear-gradient(180deg, #061e2d, #082d40);
}

.bonuses .section-description strong {
  color: var(--yellow);
}

.carousel {
  position: relative;
  width: min(700px, calc(100% - 70px));
  margin: 0 auto;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  position: relative;
  min-height: 600px;
}

.bonus-card {
  position: absolute;
  inset: 0;
  min-height: 590px;
  padding: 26px;
  visibility: hidden;
  border: 1px solid rgba(255, 210, 57, 0.2);
  border-radius: 12px;
  opacity: 0;
  background: linear-gradient(155deg, rgba(24, 65, 81, 0.96), rgba(5, 31, 46, 0.98));
  box-shadow: 0 19px 45px rgba(0, 10, 18, 0.3);
  transform: translateX(24px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.bonus-card.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.bonus-number {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.bonus-image {
  display: flex;
  width: 100%;
  height: clamp(300px, 42vw, 370px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid rgba(255, 211, 59, 0.28);
  border-radius: 8px;
  background: rgba(4, 29, 43, 0.58);
}

.bonus-card .bonus-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.bonus-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.bonus-card p {
  margin: 0;
  color: #a6bdc6;
  line-height: 1.55;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #0b3140;
  background: white;
  font-size: 1.65rem;
  transform: translateY(-50%);
}

.carousel__arrow--prev {
  left: -58px;
}

.carousel__arrow--next {
  right: -58px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 19px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #5f7c88;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 20px;
  background: var(--yellow);
}

.image-ribbon {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 17px 0;
  background: #edf9fd;
}

.image-ribbon__track {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: image-ribbon-scroll 42s linear infinite;
  will-change: transform;
}

.image-ribbon:hover .image-ribbon__track {
  animation-play-state: paused;
}

.image-ribbon__group {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.image-ribbon__item {
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 1.42 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid #d3e7ed;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(9, 48, 67, 0.08);
}

.image-ribbon__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes image-ribbon-scroll {
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-ribbon__track {
    animation-play-state: paused;
  }
}

/* PREÇOS */
.pricing {
  min-height: 1320px;
  padding: 112px 0 135px;
  background:
    radial-gradient(circle at 50% 45%, rgba(53, 220, 194, 0.08), transparent 34%),
    var(--paper);
}

.pricing .section-description {
  margin-bottom: 68px;
}

.pricing-grid {
  display: grid;
  width: min(920px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 18px;
  margin: 0 auto;
}

.price-card {
  scroll-margin-top: 50px;
  border-radius: 17px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card.is-highlighted {
  transform: translateY(-4px);
  box-shadow: 0 0 0 4px rgba(38, 216, 182, 0.24), 0 30px 65px rgba(7, 42, 54, 0.18);
}

.price-card--basic {
  display: flex;
  min-height: 1030px;
  flex-direction: column;
  margin: 30px 0;
  padding: 34px 28px 22px;
  border: 1px solid #d5e3e8;
  background: white;
  box-shadow: 0 21px 55px rgba(8, 42, 56, 0.11);
}

.price-card--complete {
  position: relative;
  display: flex;
  min-height: 1090px;
  flex-direction: column;
  padding: 34px 28px 30px;
  border: 1px solid rgba(52, 220, 194, 0.55);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(32, 218, 139, 0.11), transparent 34%),
    linear-gradient(165deg, #052c3d 0%, #07504f 100%);
  box-shadow: 0 30px 75px rgba(4, 38, 50, 0.3);
}

.best-choice {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 2;
  padding: 8px 22px;
  border-radius: 999px;
  color: #3d3500;
  background: var(--yellow);
  box-shadow: 0 8px 20px rgba(255, 213, 51, 0.22);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.last-chance {
  display: flex;
  width: min(100%, 370px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 24px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff434c, #ed242e);
  box-shadow: 0 0 0 0 rgba(239, 45, 54, 0.42), 0 12px 28px rgba(239, 45, 54, 0.22);
  font-size: 0.76rem;
  line-height: 1.22;
  text-align: center;
  animation: last-chance-pulse 1.35s ease-in-out infinite;
}

.last-chance__icon {
  flex: 0 0 auto;
  font-size: 1rem;
}

@keyframes last-chance-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 45, 54, 0.38), 0 12px 28px rgba(239, 45, 54, 0.22);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 11px rgba(239, 45, 54, 0), 0 17px 34px rgba(239, 45, 54, 0.34);
  }
}

.plan-name {
  margin-bottom: 15px;
  color: #10bdad;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card--complete .plan-name {
  margin-bottom: 8px;
  color: #50ebd1;
}

.price-card del {
  display: block;
  margin-bottom: 2px;
  color: #e35256;
  font-size: 0.82rem;
}

.price {
  margin-bottom: 0;
  color: #092838;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 3.35rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price small {
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card--complete .price {
  color: #21e28a;
}

.payment-note {
  margin: 7px 0 25px;
  color: #79909b;
  font-size: 0.72rem;
}

.complete-product {
  display: flex;
  width: 100%;
  height: clamp(245px, 28vw, 320px);
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  overflow: hidden;
}

.complete-product img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.complete-price-block {
  margin-bottom: 18px;
}

.complete-summary {
  margin: 6px 0 0;
  color: #edfafa;
  font-size: 0.75rem;
  font-weight: 800;
}

.plan-features {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 13px 12px;
  border: 1px solid #e0e8eb;
  border-radius: 9px;
  color: #47616d;
  background: #f7f9fa;
  font-size: 0.8rem;
  line-height: 1.4;
}

.plan-features li span {
  flex: 0 0 auto;
  color: #13bb79;
  font-weight: 950;
}

.plan-features--basic {
  flex: 1;
  grid-template-rows: repeat(4, 1fr);
  gap: 11px;
}

.plan-features--basic li {
  min-height: 150px;
}

.plan-features--complete li {
  border-color: rgba(91, 221, 201, 0.23);
  color: #d3e5e9;
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.75rem;
}

.price-card--basic .button {
  margin-top: auto;
}

.price-card .button {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 0.71rem;
}

.compare-plans-link {
  display: block;
  margin-top: 15px;
  color: #687b84;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
}

.compare-plans-link:hover {
  color: #0cb9a5;
}

.plan-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 23px;
}

.plan-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #c7dce2;
  font-size: 0.59rem;
  line-height: 1.25;
  text-align: center;
}

.plan-trust b {
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .pricing {
    min-height: auto;
  }

  .pricing-grid {
    width: min(560px, 100%);
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .price-card--basic,
  .price-card--complete {
    min-height: auto;
    margin: 0;
  }

  .plan-features--basic {
    grid-template-rows: none;
  }

  .plan-features--basic li {
    min-height: 84px;
  }
}

/* DEPOIMENTOS */
.testimonials {
  min-height: 980px;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(53, 220, 194, 0.11), transparent 34%),
    linear-gradient(180deg, #061b29, #082b3d);
}

.testimonials h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.testimonials__intro {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #b9d1da;
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
}

.whatsapp-proof {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.whatsapp-proof__badge {
  display: flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  margin: 0 auto 14px;
  padding: 8px 15px;
  border: 1px solid rgba(53, 220, 194, 0.28);
  border-radius: 999px;
  color: #dffefa;
  background: rgba(7, 45, 58, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.whatsapp-proof__badge span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #032c25;
  background: var(--green);
  font-size: 0.72rem;
  line-height: 1;
}

.whatsapp-proof__stage {
  position: relative;
  height: 690px;
  overflow: hidden;
  border-radius: 34px;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.whatsapp-proof__stage::before {
  position: absolute;
  z-index: 0;
  top: 13%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(53, 220, 194, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 220, 194, 0.09), transparent 66%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.whatsapp-proof__stage:focus-visible {
  outline: 3px solid rgba(53, 220, 194, 0.62);
  outline-offset: 5px;
}

.whatsapp-proof__slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(390px, 72vw);
  height: 665px;
  opacity: 0;
  transform: translateX(-50%) scale(0.78);
  transition: opacity 0.48s ease, transform 0.58s cubic-bezier(0.22, 0.8, 0.24, 1), filter 0.48s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.whatsapp-proof__slide.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.whatsapp-proof__slide.is-prev {
  z-index: 1;
  opacity: 0.3;
  filter: saturate(0.55) brightness(0.66);
  transform: translateX(-145%) scale(0.82) rotate(-3deg);
}

.whatsapp-proof__slide.is-next {
  z-index: 1;
  opacity: 0.3;
  filter: saturate(0.55) brightness(0.66);
  transform: translateX(45%) scale(0.82) rotate(3deg);
}

.whatsapp-proof__phone {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid rgba(92, 232, 212, 0.52);
  border-radius: 32px;
  background: linear-gradient(145deg, #0b3545, #020c13 74%);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.34),
    0 0 0 5px rgba(53, 220, 194, 0.035);
}

.whatsapp-proof__phone::before {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: rgba(2, 15, 22, 0.76);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.whatsapp-proof__media {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(rgba(53, 220, 194, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 220, 194, 0.025) 1px, transparent 1px),
    #071c25;
  background-size: 28px 28px;
}

.whatsapp-proof__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.whatsapp-proof__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid rgba(53, 220, 194, 0.42);
  border-radius: 50%;
  color: #04202c;
  background: #f7fcff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.whatsapp-proof__arrow:hover {
  color: #021a22;
  background: var(--cyan);
  transform: translateY(-50%) scale(1.07);
}

.whatsapp-proof__arrow:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.whatsapp-proof__arrow--prev {
  left: 14%;
}

.whatsapp-proof__arrow--next {
  right: 14%;
}

.whatsapp-proof__controls {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 0;
}

.whatsapp-proof__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.whatsapp-proof__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #63818d;
  transition: width 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.whatsapp-proof__dots button:hover {
  background: #aac3cc;
  transform: scale(1.12);
}

.whatsapp-proof__dots button.is-active {
  width: 30px;
  background: var(--yellow);
}

.whatsapp-proof__dots button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.whatsapp-proof__counter {
  color: #71909d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.whatsapp-proof__counter strong {
  color: var(--cyan);
}

.whatsapp-proof__hint {
  margin: 7px 0 0;
  color: #8aa5b0;
  font-size: 0.75rem;
  text-align: center;
}

.proof-privacy-note {
  max-width: 680px;
  margin: 18px auto 0;
  color: #7896a2;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

/* GARANTIA */
.guarantee {
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 220, 194, 0.13), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(32, 218, 139, 0.08), transparent 25%),
    linear-gradient(145deg, #061f2f, #072f42 58%, #062637);
}

.guarantee::before {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(53, 220, 194, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 220, 194, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(90deg, black, transparent 45%, transparent 55%, black);
}

.guarantee-card {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 44px 52px;
  overflow: hidden;
  border: 1px solid rgba(80, 232, 208, 0.32);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(6, 54, 69, 0.95), rgba(5, 34, 49, 0.96));
  box-shadow: 0 30px 75px rgba(0, 12, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.guarantee-card::after {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(53, 220, 194, 0.12);
  border-radius: 50%;
  content: "";
}

.guarantee-seal {
  position: relative;
  z-index: 1;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  justify-self: center;
  padding: 10px;
  border-radius: 50%;
  background: conic-gradient(from 25deg, #20da8b, #35dcc2, #ffd533, #20da8b);
  box-shadow: 0 0 0 8px rgba(53, 220, 194, 0.08), 0 18px 45px rgba(0, 0, 0, 0.32);
}

.guarantee-seal::before,
.guarantee-seal::after {
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 48px;
  height: 76px;
  background: #13b999;
  content: "";
}

.guarantee-seal::before {
  left: -18px;
  transform: translateY(-34%) rotate(-22deg);
}

.guarantee-seal::after {
  right: -18px;
  transform: translateY(-34%) rotate(22deg);
}

.guarantee-seal__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #0a5560, #062a3b 68%);
  box-shadow: inset 0 0 30px rgba(53, 220, 194, 0.12);
}

.guarantee-seal svg {
  width: 35px;
  height: 35px;
  margin-bottom: 2px;
  fill: none;
  stroke: #49e4ca;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-seal strong {
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 3.25rem;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.guarantee-seal span {
  margin-top: 7px;
  color: #a9f2e7;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-align: center;
}

.guarantee-content {
  position: relative;
  z-index: 1;
}

.guarantee .section-label {
  margin-bottom: 12px;
  text-align: left;
}

.guarantee h2 {
  max-width: 590px;
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1;
  text-align: left;
}

.guarantee-description {
  max-width: 610px;
  margin: 0 0 24px;
  color: #bad0d8;
  font-size: 1rem;
  line-height: 1.65;
}

.guarantee-benefits {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e3f4f7;
  font-size: 0.9rem;
  line-height: 1.4;
}

.guarantee-benefits span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: #042a2e;
  background: #35dcc2;
  font-size: 0.78rem;
  font-weight: 950;
}

/* FAQ */
.faq {
  min-height: 720px;
  padding: 112px 0 125px;
}

.faq h2 {
  margin-bottom: 42px;
}

.accordion {
  border-top: 1px solid #cfe1e6;
}

.accordion-item {
  border-bottom: 1px solid #cfe1e6;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 4px;
  border: 0;
  color: #0a2939;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.accordion-item button:hover {
  color: #009c88;
}

.accordion-item button span {
  color: #1ecfb7;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.accordion-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  color: #58717c;
  transition: grid-template-rows 220ms ease;
}

.accordion-content>p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  line-height: 1.6;
}

.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-content>p {
  padding: 0 40px 20px 4px;
}

/* CTA FINAL */
.final-cta {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background: linear-gradient(140deg, #082b40, #062337);
  text-align: center;
}

.final-icon {
  margin-bottom: 20px;
  color: #33dfc4;
  font-size: 2.8rem;
}

.final-cta h2 {
  max-width: 790px;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #a9c0ca;
  line-height: 1.6;
}

footer {
  min-height: 175px;
  padding: 48px 24px;
  color: #718d99;
  background: #041621;
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

footer p {
  max-width: 850px;
  margin: 0 auto 7px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 240ms ease, opacity 240ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 18, 0.8);
  backdrop-filter: blur(9px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(630px, 100%);
  max-height: calc(100vh - 28px);
  padding: 0 34px 32px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(70, 225, 201, 0.28);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(155deg, #07364a, #061e2c 70%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
  text-align: center;
  transform: translateY(18px) scale(0.97);
  transition: transform 240ms ease;
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.exit-offer__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 -34px 28px;
  padding: 13px 18px;
  color: #263300;
  background: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.modal__close {
  position: absolute;
  top: 51px;
  right: 14px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  color: #b9cbd2;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.3rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(4deg);
}

.eyebrow {
  margin-bottom: 9px;
  color: #39dec1;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.25em;
}

.modal h2 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
}

.modal__description {
  max-width: 520px;
  margin: 0 auto 20px;
  color: #a9c0ca;
  font-size: 0.96rem;
  line-height: 1.55;
}

.exit-offer__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 460px;
  margin: 0 auto 18px;
  padding: 18px 22px;
  border: 1px solid rgba(53, 220, 194, 0.42);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(7, 91, 85, 0.72), rgba(5, 51, 63, 0.88));
  box-shadow: inset 0 0 30px rgba(53, 220, 194, 0.06);
}

.exit-offer__old-price {
  color: #bed0d7;
  font-size: 0.92rem;
}

.exit-offer__old-price s {
  color: #f5a7a7;
  text-decoration-thickness: 2px;
}

.exit-offer__price strong {
  color: #31e59a;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2.65rem, 7vw, 3.75rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.exit-offer__price small {
  color: #9eb7c0;
  font-size: 0.78rem;
}

.exit-offer__benefits {
  display: grid;
  max-width: 520px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.exit-offer__benefits li {
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  color: #c8d9df;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.75rem;
  line-height: 1.35;
}

.exit-offer__benefits span {
  color: #31e59a;
  font-weight: 900;
}

.exit-offer__checkout {
  width: min(100%, 460px);
  min-height: 58px;
  margin: 0 auto;
}

.exit-offer__decline {
  margin-top: 15px;
  padding: 4px;
  border: 0;
  color: #839da8;
  background: transparent;
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exit-offer__decline:hover {
  color: #b9cbd2;
}

/* OFERTA ANTES DO PLANO BÁSICO */
.basic-upgrade__card {
  width: min(680px, 100%);
  padding-bottom: 30px;
  overflow-x: hidden;
  border-color: rgba(255, 213, 51, 0.5);
  background:
    radial-gradient(circle at 50% 35%, rgba(53, 220, 194, 0.15), transparent 38%),
    linear-gradient(155deg, #07384b, #061e2c 72%);
}

.basic-upgrade__bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 -34px 27px;
  padding: 12px 56px 12px 18px;
  color: #282f00;
  background: linear-gradient(90deg, #ffd533, #ffe66b, #ffd533);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.095em;
  line-height: 1.3;
  animation: basic-upgrade-attention 1.8s ease-in-out infinite;
}

.basic-upgrade__comparison {
  display: grid;
  max-width: 570px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  margin: 4px auto 14px;
}

.basic-upgrade__choice {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.basic-upgrade__choice>span {
  color: #94acb5;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.basic-upgrade__choice strong {
  color: #c5d5db;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.basic-upgrade__choice small {
  color: #849da7;
  font-size: 0.72rem;
}

.basic-upgrade__choice--complete {
  position: relative;
  border-color: rgba(49, 229, 154, 0.62);
  background: linear-gradient(145deg, rgba(10, 103, 87, 0.72), rgba(5, 58, 67, 0.9));
  box-shadow: 0 14px 34px rgba(18, 211, 132, 0.13), inset 0 0 30px rgba(53, 220, 194, 0.06);
}

.basic-upgrade__choice--complete>span,
.basic-upgrade__choice--complete strong {
  color: #35e69c;
}

.basic-upgrade__choice--complete small {
  color: #d4ebe6;
}

.basic-upgrade__arrow {
  align-self: center;
  color: var(--yellow);
  font-size: 1.65rem;
  font-weight: 900;
}

.basic-upgrade__difference {
  margin: 0 auto 17px;
  color: #c3d5dc;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.basic-upgrade__difference strong {
  color: var(--yellow);
}

.basic-upgrade__benefits {
  display: grid;
  max-width: 570px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.basic-upgrade__benefits li {
  padding: 10px 8px;
  border: 1px solid rgba(53, 220, 194, 0.14);
  border-radius: 9px;
  color: #c9dce2;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.73rem;
  line-height: 1.35;
  text-align: center;
}

.basic-upgrade__benefits span {
  color: #31e59a;
  font-weight: 950;
}

.basic-upgrade__actions {
  display: grid;
  max-width: 500px;
  gap: 9px;
  margin: 0 auto;
}

.basic-upgrade__accept {
  width: 100%;
  min-height: 60px;
  padding: 12px 18px;
}

.basic-upgrade__decline {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #9db3bc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.73rem;
  line-height: 1.35;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.basic-upgrade__decline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #d4e2e7;
  background: rgba(255, 255, 255, 0.07);
}

@keyframes basic-upgrade-attention {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

/* =========================================================
   TEMA CÃO SOZINHO SEM CAOS — AZUL CLARO
   Mantém a estrutura original e substitui o visual escuro.
   ========================================================= */

body {
  background: #c8e8fa;
}

.section-dark {
  color: var(--ink);
  background: #e6f5ff;
}

.section-description--dark {
  color: var(--muted);
}

.section-label {
  color: #176fa8;
}

h1 span,
h2 span {
  color: #0f75b8;
}

.announcement {
  color: #17445e;
  background: linear-gradient(90deg, #d8f1ff, #bfe5fb, #d8f1ff);
  border-bottom: 1px solid #a8d5ee;
}

.pulse-dot {
  background: #2b8fc4;
  box-shadow: 0 0 0 5px rgba(43, 143, 196, 0.16);
}

.hero {
  color: var(--ink);
  background:
    linear-gradient(rgba(25, 120, 184, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 120, 184, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 12% 12%, rgba(112, 199, 244, 0.42), transparent 30%),
    linear-gradient(138deg, #f2fbff 0%, #dff3ff 48%, #c8e9fb 100%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.hero::after {
  background: linear-gradient(180deg, transparent 72%, rgba(109, 177, 214, 0.13));
}

.hero-grid span {
  border-color: rgba(25, 120, 184, 0.12);
  background: rgba(86, 173, 220, 0.08);
}

.hero-grid span:nth-child(2),
.hero-grid span:nth-child(5),
.hero-grid span:nth-child(7),
.hero-grid span:nth-child(9),
.hero-grid span:nth-child(13),
.hero-grid span:nth-child(17) {
  background: rgba(86, 173, 220, 0.15);
  box-shadow: inset 0 0 22px rgba(25, 120, 184, 0.05);
}

.top-proof {
  color: #176fa8;
}

.hero__description,
.delivery {
  color: var(--muted);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #379ed4, #176fa8);
  box-shadow: 0 13px 28px rgba(23, 111, 168, 0.24), inset 0 -2px 0 rgba(5, 55, 88, 0.16);
}

.button--secondary {
  color: #fff;
  background: #447d9e;
}

.button:focus-visible,
.modal__close:focus-visible,
.exit-offer__checkout:focus-visible,
.exit-offer__decline:focus-visible,
.basic-upgrade__accept:focus-visible,
.basic-upgrade__decline:focus-visible,
.accordion-item button:focus-visible,
.carousel__arrow:focus-visible {
  outline-color: rgba(25, 120, 184, 0.55);
}

.trust-row {
  border-top-color: rgba(25, 120, 184, 0.14);
}

.trust-badge,
.trust-badge--guarantee {
  border-color: rgba(25, 120, 184, 0.18);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 9px 25px rgba(57, 115, 148, 0.08);
}

.trust-badge__icon,
.trust-badge--guarantee .trust-badge__icon {
  border-color: rgba(25, 120, 184, 0.2);
  color: #176fa8;
  background: #dff2ff;
}

.trust-badge__text strong {
  color: var(--ink);
}

.trust-badge__text small {
  color: var(--muted);
}

.preview {
  background: #f8fcff;
}

.benefits {
  background: linear-gradient(180deg, #e3f5ff, #d9effc);
}

.benefit-card {
  border-color: #b7ddf2;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 36px rgba(57, 115, 148, 0.09);
}

.benefit-image {
  border-color: #add8ee;
  background: #eaf7ff;
}

.benefit-card p {
  color: var(--muted);
}

.modules {
  background: #d1ecfb;
}

.module-card {
  border-color: #afd8ee;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 10px 26px rgba(57, 115, 148, 0.07);
}

.module-card>span {
  color: #fff;
  background: #3e9bc9;
  box-shadow: 0 8px 18px rgba(33, 125, 176, 0.2);
}

.module-card p,
.reference-note {
  color: var(--muted);
}

.reference-note {
  border-color: #9fcee7;
  background: rgba(255, 255, 255, 0.55);
}

.audience {
  background: #edf8ff;
}

.audience .section-label::before,
.audience .section-label::after {
  background: rgba(25, 120, 184, 0.34);
}

.audience-card {
  border-color: #afd9ee;
  background: linear-gradient(90deg, #ffffff, #eff9ff);
  box-shadow: 0 18px 38px rgba(57, 115, 148, 0.09);
}

.audience-image {
  background: #dceffa;
}

.audience-card i {
  background: #3e9bc9;
}

.audience-card p {
  color: var(--muted);
}

.receive {
  background: #f7fcff;
}

.receive-panel {
  border-top-color: #4b9fca;
  box-shadow: 0 23px 62px rgba(57, 115, 148, 0.13);
}

.receive-image,
.receive-image__video {
  background: #e3f3fc;
}

.receive-list b {
  background: #2f8ebd;
}

.bonuses {
  background: linear-gradient(180deg, #d7effc, #cbe8f8);
}

.bonuses .section-description strong,
.bonus-number {
  color: #176fa8;
}

.bonus-card {
  border-color: #a8d3ea;
  color: var(--ink);
  background: linear-gradient(155deg, #ffffff, #edf8ff);
  box-shadow: 0 20px 50px rgba(57, 115, 148, 0.16);
}

.bonus-image {
  border-color: #b9ddf0;
  background: #e7f5fd;
}

.bonus-card p {
  color: var(--muted);
}

.carousel__arrow {
  color: #135f8e;
  background: #fff;
  box-shadow: 0 10px 24px rgba(57, 115, 148, 0.18);
}

.carousel-dots button {
  background: #8dbbd4;
}

.carousel-dots button.is-active {
  background: #176fa8;
}

.image-ribbon {
  background: #bfe2f5;
}

.pricing {
  background:
    radial-gradient(circle at 50% 45%, rgba(80, 164, 210, 0.14), transparent 34%),
    #f8fcff;
}

.price-card--basic {
  border-color: #c1dfee;
  box-shadow: 0 21px 55px rgba(57, 115, 148, 0.12);
}

.price-card--complete {
  border-color: #75b8da;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 22%, rgba(106, 194, 239, 0.25), transparent 34%),
    linear-gradient(165deg, #e7f6ff 0%, #c6e9fb 100%);
  box-shadow: 0 30px 70px rgba(57, 115, 148, 0.2);
}

.best-choice {
  color: #17445e;
  background: #ffd775;
  box-shadow: 0 8px 20px rgba(214, 162, 46, 0.2);
}

.last-chance {
  border-color: #8fc9e6;
  color: #155b84;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  animation: none;
}

.plan-name,
.price-card--complete .plan-name {
  color: #176fa8;
}

.price-card--complete .price {
  color: #0f679d;
}

.complete-summary {
  color: #315c73;
}

.plan-features--complete li {
  border-color: rgba(72, 148, 191, 0.22);
  color: #365c72;
  background: rgba(255, 255, 255, 0.68);
}

.plan-features li span {
  color: #287fae;
}

.plan-trust span {
  color: #365c72;
}

.plan-trust b {
  color: #176fa8;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 48%, rgba(65, 155, 204, 0.14), transparent 34%),
    linear-gradient(180deg, #e3f5ff, #d4edfb);
}

.testimonials__intro,
.proof-privacy-note,
.whatsapp-proof__hint,
.whatsapp-proof__counter {
  color: var(--muted);
}

.whatsapp-proof__badge {
  border-color: #9acde7;
  color: #174d6d;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(57, 115, 148, 0.12);
}

.whatsapp-proof__badge span {
  color: #fff;
  background: #2f8ebd;
}

.whatsapp-proof__stage::before {
  border-color: rgba(25, 120, 184, 0.14);
  background: radial-gradient(circle, rgba(94, 180, 226, 0.18), transparent 66%);
}

.whatsapp-proof__phone {
  border-color: #7abada;
  background: linear-gradient(145deg, #ffffff, #cfe9f7 74%);
  box-shadow: 0 30px 60px rgba(57, 115, 148, 0.2), 0 0 0 5px rgba(25, 120, 184, 0.04);
}

.whatsapp-proof__phone::before {
  background: rgba(41, 104, 140, 0.28);
}

.whatsapp-proof__media {
  background:
    linear-gradient(rgba(25, 120, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 120, 184, 0.035) 1px, transparent 1px),
    #eff9ff;
  background-size: 28px 28px;
}

.whatsapp-proof__arrow {
  border-color: #82bfdc;
  color: #174d6d;
  background: #fff;
  box-shadow: 0 12px 28px rgba(57, 115, 148, 0.2);
}

.whatsapp-proof__arrow:hover {
  color: #fff;
  background: #2f8ebd;
}

.whatsapp-proof__dots button {
  background: #91b9cf;
}

.whatsapp-proof__dots button.is-active {
  background: #176fa8;
}

.whatsapp-proof__counter strong {
  color: #176fa8;
}

.guarantee {
  background:
    radial-gradient(circle at 18% 50%, rgba(65, 155, 204, 0.16), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(109, 190, 232, 0.16), transparent 25%),
    linear-gradient(145deg, #d8effc, #cbe9f9 58%, #e7f6ff);
}

.guarantee::before {
  background-image:
    linear-gradient(rgba(25, 120, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 120, 184, 0.06) 1px, transparent 1px);
}

.guarantee-card {
  border-color: #9bcde6;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 70px rgba(57, 115, 148, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.guarantee-card::after {
  border-color: rgba(25, 120, 184, 0.12);
}

.guarantee-seal {
  background: conic-gradient(from 25deg, #2f8ebd, #6cbee7, #ffd166, #2f8ebd);
  box-shadow: 0 0 0 8px rgba(25, 120, 184, 0.08), 0 18px 45px rgba(57, 115, 148, 0.2);
}

.guarantee-seal::before,
.guarantee-seal::after {
  background: #2f8ebd;
}

.guarantee-seal__inner {
  background: radial-gradient(circle at 50% 35%, #5aaed7, #176fa8 68%);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12);
}

.guarantee-seal svg {
  stroke: #dff5ff;
}

.guarantee-description {
  color: var(--muted);
}

.guarantee-benefits li {
  color: #2f566c;
}

.guarantee-benefits span {
  color: #fff;
  background: #2f8ebd;
}

.faq {
  background: #f8fcff;
}

.accordion,
.accordion-item {
  border-color: #c3dfed;
}

.accordion-item button:hover,
.accordion-item button span {
  color: #176fa8;
}

.final-cta {
  color: var(--ink);
  background: linear-gradient(140deg, #dff3ff, #c5e8fb);
}

.final-icon {
  color: #176fa8;
}

.final-cta p {
  color: var(--muted);
}

footer {
  color: #d7edf8;
  background: #245f80;
}

.modal__overlay {
  background: rgba(26, 64, 86, 0.66);
}

.modal__card,
.basic-upgrade__card {
  border-color: #91c7e2;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(112, 199, 244, 0.2), transparent 38%),
    linear-gradient(155deg, #ffffff, #e3f4fd 72%);
  box-shadow: 0 35px 90px rgba(30, 85, 115, 0.3);
}

.exit-offer__bar,
.basic-upgrade__bar {
  color: #17445e;
  background: linear-gradient(90deg, #d7effc, #b9e1f7, #d7effc);
  animation: none;
}

.modal__close {
  color: #4d7185;
  background: rgba(25, 120, 184, 0.08);
}

.modal__close:hover {
  color: #17445e;
  background: rgba(25, 120, 184, 0.15);
}

.eyebrow {
  color: #176fa8;
}

.modal__description,
.exit-offer__old-price,
.exit-offer__price small,
.basic-upgrade__difference {
  color: var(--muted);
}

.exit-offer__price {
  border-color: #9dcfe7;
  background: rgba(255, 255, 255, 0.7);
}

.exit-offer__price strong {
  color: #176fa8;
}

.exit-offer__benefits li,
.basic-upgrade__benefits li,
.basic-upgrade__choice {
  border-color: rgba(25, 120, 184, 0.15);
  color: #365c72;
  background: rgba(255, 255, 255, 0.62);
}

.exit-offer__benefits span,
.basic-upgrade__benefits span {
  color: #287fae;
}

.exit-offer__decline,
.basic-upgrade__decline {
  color: #527083;
}

.exit-offer__decline:hover,
.basic-upgrade__decline:hover {
  color: #17445e;
}

.basic-upgrade__choice>span,
.basic-upgrade__choice small,
.basic-upgrade__choice strong {
  color: #4b6d80;
}

.basic-upgrade__choice--complete {
  border-color: #69add2;
  background: linear-gradient(145deg, #e3f4fd, #bfe4f7);
  box-shadow: 0 14px 34px rgba(57, 115, 148, 0.13);
}

.basic-upgrade__choice--complete>span,
.basic-upgrade__choice--complete strong,
.basic-upgrade__difference strong,
.basic-upgrade__arrow {
  color: #176fa8;
}

.basic-upgrade__choice--complete small {
  color: #3c6379;
}

.basic-upgrade__decline {
  border-color: rgba(25, 120, 184, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

/* NOTIFICAÇÃO DE COMPRA */
.purchase-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  width: min(410px, calc(100% - 48px));
  min-height: 94px;
  align-items: center;
  gap: 15px;
  padding: 15px 45px 15px 16px;
  overflow: hidden;
  visibility: hidden;
  border: 1px solid rgba(255, 213, 51, 0.4);
  border-radius: 18px;
  color: #f5fbfd;
  background:
    radial-gradient(circle at 14% 20%, rgba(32, 218, 139, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(3, 13, 23, 0.985), rgba(5, 28, 40, 0.985));
  box-shadow: 0 22px 60px rgba(0, 8, 15, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-115%, 0, 0);
  transition: visibility 360ms ease, opacity 360ms ease, transform 360ms cubic-bezier(0.2, 0.9, 0.25, 1.08);
}

.purchase-toast::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #35dcc2, #20da8b);
  content: "";
}

.purchase-toast::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #20da8b, #35dcc2, #ffd533);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.purchase-toast.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.purchase-toast.is-visible::after {
  animation: purchase-toast-progress 6.2s linear forwards;
}

.purchase-toast__check {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #38e6a0, #12bd6f);
  box-shadow: 0 0 0 7px rgba(32, 218, 139, 0.1), 0 10px 24px rgba(15, 181, 105, 0.25);
  font-size: 1.45rem;
  font-weight: 950;
}

.purchase-toast.is-visible .purchase-toast__check {
  animation: purchase-check-pop 440ms 160ms both;
}

.purchase-toast__content {
  display: block;
  flex: 1;
  min-width: 0;
}

.purchase-toast__content strong,
.purchase-toast__content small {
  display: block;
}

.purchase-toast__content strong {
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.purchase-toast__meta {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #c7bab0;
  font-size: 0.78rem;
  line-height: 1.3;
}

.purchase-toast__demo {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 2px 6px;
  border: 1px solid rgba(255, 213, 51, 0.4);
  border-radius: 999px;
  color: #ffe277;
  background: rgba(255, 213, 51, 0.09);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.purchase-toast__demo[hidden] {
  display: none;
}

.purchase-toast__close {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #9fb5bd;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  line-height: 1;
}

.purchase-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes purchase-toast-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes purchase-check-pop {
  0% {
    transform: scale(0.72) rotate(-9deg);
  }

  70% {
    transform: scale(1.08) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .container,
  .container--narrow {
    width: min(100% - 32px, 560px);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .announcement {
    min-height: 46px;
    font-size: 0.67rem;
    line-height: 1.35;
  }

  .hero {
    min-height: 930px;
    padding: 55px 0 70px;
    background-size: 42px 42px, 42px 42px, auto, auto;
  }

  .hero-grid {
    grid-template-columns: repeat(5, 42px);
    grid-auto-rows: 42px;
  }

  .hero-grid--right {
    top: 86px;
    right: -82px;
    opacity: 0.66;
  }

  .hero-grid--left {
    bottom: 70px;
    left: -145px;
  }

  .rating-pill {
    flex-direction: column;
    gap: 3px;
    border-radius: 13px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 2.6rem);
  }

  .hero-product {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }

  .hero-product img {
    width: 100%;
    height: auto;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-top: 14px;
  }

  .trust-badge {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 9px 5px;
    border-radius: 10px;
  }

  .trust-badge__icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 9px;
  }

  .trust-badge__icon svg {
    width: 17px;
    height: 17px;
  }

  .trust-badge__text {
    align-items: center;
    gap: 2px;
    text-align: center;
  }

  .trust-badge__text strong {
    font-size: 0.64rem;
  }

  .trust-badge__text small {
    font-size: 0.56rem;
    line-height: 1.2;
  }

  .preview,
  .benefits,
  .modules,
  .audience,
  .receive,
  .bonuses,
  .pricing,
  .testimonials,
  .faq {
    min-height: auto;
    padding: 84px 0;
  }

  .module-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* BENEFÍCIOS — mantém o formato compacto 2x2 do original */
  .benefits {
    padding: 42px 0 48px;
  }

  .benefits .container {
    width: min(calc(100% - 10px), 560px);
  }

  .benefits .section-label {
    margin-bottom: 14px;
    font-size: 0.64rem;
  }

  .benefits h2 {
    max-width: 410px;
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 7vw, 2rem);
    line-height: 1;
  }

  .benefits .section-description {
    max-width: 410px;
    margin-bottom: 32px;
    padding: 0 10px;
    font-size: 0.8rem;
    line-height: 1.65;
  }

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

  .preview {
    padding-bottom: 0;
  }

  .preview .section-description {
    margin-bottom: 34px;
  }

  .map-preview__viewer {
    width: calc(100% - 18px);
  }

  .map-preview__arrow {
    width: 38px;
    height: 38px;
  }

  .map-preview__arrow--prev {
    left: -10px;
  }

  .map-preview__arrow--next {
    right: -10px;
  }

  .map-preview__ticker {
    margin-top: 16px;
  }

  .map-preview__ticker-track,
  .map-preview__ticker-group {
    gap: 8px;
  }

  .map-preview__ticker-track {
    animation-duration: 36s;
  }

  .map-preview__ticker-item {
    width: 222px;
  }

  @keyframes map-preview-scroll {
    to {
      transform: translateX(calc(-50% - 4px));
    }
  }

  .benefit-card {
    min-height: 246px;
    padding: 16px 16px 18px;
    border-radius: 14px;
  }

  .benefit-image {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .benefit-card h3 {
    margin-bottom: 7px;
    font-size: 0.8rem;
    line-height: 1.12;
  }

  .benefit-card p {
    font-size: 0.8rem;
    line-height: 1.65;
  }

  .module-card {
    min-height: 110px;
  }

  /* PÚBLICO — imagem e texto continuam lado a lado no celular */
  .audience {
    padding: 38px 0 52px;
  }

  .audience-card {
    min-height: 137px;
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 24px;
    padding: 10px 27px;
    border-radius: 18px;
  }

  .audience .container--narrow {
    width: min(calc(100% - 14px), 560px);
  }

  .audience .section-label {
    margin-bottom: 14px;
    font-size: 0.64rem;
  }

  .audience h2 {
    max-width: 410px;
    margin-bottom: 28px;
    font-size: clamp(1.75rem, 7.2vw, 2rem);
    line-height: 1;
  }

  .audience-image {
    width: 115px;
    height: 115px;
    margin: 0;
    border-radius: 14px;
  }

  .audience-card__content {
    min-width: 0;
  }

  .audience-card h3 {
    margin-bottom: 7px;
    font-size: clamp(1rem, 4vw, 1.15rem);
    line-height: 1.08;
  }

  .audience-card i {
    width: 28px;
    height: 2px;
    margin-bottom: 8px;
  }

  .audience-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .receive-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px;
  }

  .receive-image {
    width: min(100%, 330px);
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .carousel {
    width: calc(100% - 38px);
  }

  .carousel__track {
    min-height: 560px;
  }

  .bonus-card {
    min-height: 550px;
  }

  .bonus-image {
    height: 300px;
    padding: 8px;
  }

  .carousel__arrow--prev {
    left: -23px;
  }

  .carousel__arrow--next {
    right: -23px;
  }

  .image-ribbon {
    height: auto;
    padding: 10px 0;
  }

  .image-ribbon__track {
    animation-duration: 34s;
  }

  .image-ribbon__item {
    width: 215px;
  }

  .price-card--basic {
    min-height: auto;
    margin: 0;
    padding: 28px 22px 22px;
  }

  .price-card--complete {
    min-height: auto;
    margin-top: 20px;
    padding: 30px 18px 24px;
  }

  .last-chance {
    width: calc(100% - 10px);
    min-height: 54px;
    margin-bottom: 20px;
    padding: 10px 14px;
    font-size: 0.68rem;
  }

  .complete-product {
    height: 280px;
  }

  .plan-features--basic li {
    min-height: 76px;
  }

  .plan-trust {
    gap: 5px;
  }

  .plan-trust span {
    flex-direction: column;
    font-size: 0.56rem;
  }

  .testimonials {
    padding: 64px 0 58px;
  }

  .testimonials .container {
    width: min(calc(100% - 16px), 560px);
  }

  .testimonials h2 {
    max-width: 430px;
    margin-bottom: 15px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .testimonials__intro {
    width: calc(100% - 24px);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .whatsapp-proof__badge {
    min-height: 34px;
    margin-bottom: 10px;
    padding: 7px 12px;
    font-size: 0.7rem;
  }

  .whatsapp-proof__stage {
    height: clamp(540px, 152vw, 650px);
    border-radius: 24px;
  }

  .whatsapp-proof__stage::before {
    top: 16%;
    width: 94vw;
    height: 94vw;
  }

  .whatsapp-proof__slide {
    top: 7px;
    width: min(calc(100% - 62px), 380px);
    height: calc(100% - 14px);
    transform: translateX(-50%) scale(0.9);
  }

  .whatsapp-proof__slide.is-prev,
  .whatsapp-proof__slide.is-next {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
  }

  .whatsapp-proof__phone {
    padding: 7px;
    border-radius: 27px;
  }

  .whatsapp-proof__phone::before {
    top: 13px;
    width: 50px;
    height: 4px;
  }

  .whatsapp-proof__media {
    border-radius: 21px;
  }

  .whatsapp-proof__arrow {
    width: 42px;
    height: 42px;
    font-size: 1.75rem;
  }

  .whatsapp-proof__arrow--prev {
    left: 2px;
  }

  .whatsapp-proof__arrow--next {
    right: 2px;
  }

  .whatsapp-proof__controls {
    margin-top: 6px;
  }

  .whatsapp-proof__hint {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
  }

  .proof-privacy-note {
    width: calc(100% - 30px);
    margin-top: 15px;
  }

  .guarantee {
    padding: 64px 0;
  }

  .guarantee::before {
    mask-image: none;
  }

  .guarantee .container--narrow {
    width: min(100% - 24px, 560px);
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 22px 30px;
    border-radius: 22px;
  }

  .guarantee-seal {
    width: 172px;
    height: 172px;
  }

  .guarantee-seal::before,
  .guarantee-seal::after {
    width: 38px;
    height: 60px;
  }

  .guarantee-seal strong {
    font-size: 2.7rem;
  }

  .guarantee-seal span {
    font-size: 0.58rem;
  }

  .guarantee-seal svg {
    width: 29px;
    height: 29px;
  }

  .guarantee .section-label,
  .guarantee h2 {
    text-align: center;
  }

  .guarantee h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .guarantee-description {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9rem;
    text-align: center;
  }

  .guarantee-benefits {
    gap: 8px;
  }

  .guarantee-benefits li {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.82rem;
    text-align: left;
  }

  .purchase-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-height: 82px;
    gap: 12px;
    padding: 12px 40px 12px 12px;
    border-radius: 15px;
    transform: translate3d(0, calc(100% + 28px), 0);
  }

  .purchase-toast__check {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 1.2rem;
  }

  .purchase-toast__content strong {
    font-size: 0.88rem;
  }

  .purchase-toast__content small {
    font-size: 0.72rem;
  }

  .modal__card {
    padding: 0 18px 22px;
    border-radius: 14px;
  }

  .exit-offer__bar {
    margin: 0 -18px 22px;
    padding: 11px 15px;
    font-size: 0.65rem;
  }

  .modal__close {
    top: 45px;
  }

  .modal h2 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }

  .modal__description {
    font-size: 0.88rem;
  }

  .exit-offer__price {
    padding: 15px 18px;
  }

  .exit-offer__benefits {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .exit-offer__benefits li {
    padding: 8px 10px;
  }

  .exit-offer__checkout {
    min-height: 54px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .basic-upgrade__card {
    padding-bottom: 20px;
  }

  .basic-upgrade__bar {
    min-height: 46px;
    margin: 0 -18px 21px;
    padding: 10px 45px 10px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.065em;
  }

  .basic-upgrade .eyebrow {
    margin-bottom: 7px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .basic-upgrade .modal__description {
    margin-bottom: 15px;
  }

  .basic-upgrade__comparison {
    grid-template-columns: 1fr 28px 1fr;
    gap: 4px;
    margin-bottom: 12px;
  }

  .basic-upgrade__choice {
    min-height: 112px;
    padding: 12px 7px;
    border-radius: 12px;
  }

  .basic-upgrade__choice>span {
    font-size: 0.54rem;
    letter-spacing: 0.07em;
  }

  .basic-upgrade__choice strong {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .basic-upgrade__choice small {
    font-size: 0.63rem;
  }

  .basic-upgrade__arrow {
    font-size: 1.2rem;
  }

  .basic-upgrade__difference {
    margin-bottom: 13px;
    font-size: 0.76rem;
  }

  .basic-upgrade__benefits {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 14px;
  }

  .basic-upgrade__benefits li {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .basic-upgrade__accept {
    min-height: 54px;
    padding: 10px 12px;
    font-size: 0.67rem;
  }

  .basic-upgrade__decline {
    min-height: 43px;
    padding: 8px 12px;
    font-size: 0.67rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   ESTRUTURA COMPACTA DE CONVERSÃO — 2026-09
   Hierarquia: Hero > O que recebe > Método > Extras > Oferta
   > Transparência > FAQ > CTA final.
   ========================================================= */

.hero,
.receive,
.method-compact,
.bonuses,
.pricing,
.guarantee,
.faq,
.final-cta {
  min-height: auto !important;
}

.hero {
  padding: 58px 0 64px !important;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.55rem);
}

.hero-product {
  width: min(760px, 90vw);
  margin-bottom: 20px;
}

.hero__description {
  max-width: 650px;
  margin-bottom: 14px;
}

.hero-price-note {
  margin: 0 0 18px;
  color: #315f78;
  font-size: 0.95rem;
  text-align: center;
}

.hero-price-note strong {
  color: #0f679d;
  font-size: 1.12rem;
}

.delivery {
  margin: 14px 0 22px;
}

.trust-row {
  padding-top: 14px;
}

.receive {
  padding: 72px 0 !important;
}

.receive .section-description {
  margin-bottom: 34px;
}

.receive-panel {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  max-width: 920px;
  margin: 0 auto;
  padding: 26px;
}

.receive-image {
  width: min(100%, 300px);
  justify-self: center;
}

.receive-list {
  gap: 11px;
}

.receive-list > div {
  min-height: 74px;
}

.receive-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.method-compact {
  padding: 68px 0 !important;
  background: linear-gradient(180deg, #dceffc, #cfe9f8);
}

.method-compact h2 {
  max-width: 720px;
  margin-bottom: 34px;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.method-strip article {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 10px;
  border: 1px solid #a9d4e9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(57, 115, 148, 0.08);
  text-align: center;
}

.method-strip article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2f8ebd;
  font-weight: 950;
}

.method-strip strong {
  color: #153f58;
  font-size: 0.95rem;
}

.method-strip small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.method-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.bonuses {
  padding: 72px 0 !important;
}

.bonuses .section-description {
  margin-bottom: 28px;
}

.carousel__track {
  min-height: 470px !important;
}

.bonus-card {
  min-height: 460px !important;
}

.bonus-image {
  height: 245px !important;
}

.pricing {
  padding: 78px 0 !important;
}

.pricing .section-description {
  margin-bottom: 38px;
}

.price-card--basic,
.price-card--complete {
  min-height: auto !important;
}

.guarantee {
  padding: 68px 0 !important;
}

.guarantee-card {
  gap: 34px;
  padding: 34px 40px;
}

.guarantee-seal {
  width: 160px;
  height: 160px;
}

.guarantee h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.faq {
  padding: 68px 0 !important;
}

.faq h2 {
  margin-bottom: 28px;
}

.final-cta {
  padding: 62px 0 !important;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.final-cta p {
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  h2 {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }

  .hero {
    padding: 42px 0 48px !important;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero-product {
    width: min(100%, 560px);
    margin-bottom: 14px;
  }

  .hero__description {
    font-size: 0.94rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .receive,
  .method-compact,
  .bonuses,
  .pricing,
  .guarantee,
  .faq,
  .final-cta {
    padding: 54px 0 !important;
  }

  .receive-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px;
  }

  .receive-image {
    width: min(100%, 265px);
  }

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

  .method-strip article:last-child {
    grid-column: 1 / -1;
    min-height: 108px;
  }

  .method-strip article {
    min-height: 118px;
  }

  .carousel__track {
    min-height: 430px !important;
  }

  .bonus-card {
    min-height: 420px !important;
  }

  .bonus-image {
    height: 220px !important;
  }

  .guarantee-card {
    padding: 28px 20px;
  }

  .guarantee-seal {
    width: 145px;
    height: 145px;
  }
}


/* =========================================================
   ENTREGÁVEIS 3D — destaque visual mobile-first
   ========================================================= */
.deliverables-3d {
  position: relative;
  min-height: auto !important;
  padding: 72px 0 64px !important;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 201, 83, 0.18), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(111, 87, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #edf8ff 54%, #f8fcff 100%);
}

.deliverables-3d::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(46, 135, 186, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 135, 186, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}

.deliverables-orb {
  position: absolute;
  z-index: -2;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.24;
  pointer-events: none;
}

.deliverables-orb--one {
  top: 30%;
  left: -170px;
  background: #32b6ee;
}

.deliverables-orb--two {
  right: -180px;
  bottom: 8%;
  background: #7557ff;
}

.deliverables-3d .section-label {
  margin-bottom: 14px;
  color: #0f75b6;
}

.deliverables-3d h2 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #113c56;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
}

.deliverables-lead {
  max-width: 650px;
  margin: 0 auto 18px;
  color: #527083;
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.deliverables-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 8px;
}

.deliverables-kicker span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(24, 128, 183, 0.16);
  border-radius: 999px;
  color: #24617f;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 16px rgba(33, 92, 125, 0.05);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deliverables-stage-wrap {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
}

.deliverables-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  perspective: 1500px;
  perspective-origin: 50% 45%;
  outline: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.deliverables-stage:focus-visible {
  outline: 3px solid rgba(31, 145, 202, 0.34);
  outline-offset: 4px;
  border-radius: 26px;
}

.deliverables-stage::after {
  position: absolute;
  right: 13%;
  bottom: 25px;
  left: 13%;
  z-index: -1;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10, 49, 69, 0.28), rgba(10, 49, 69, 0) 70%);
  filter: blur(14px);
  content: "";
  transform: perspective(550px) rotateX(64deg);
  pointer-events: none;
}

.deliverable-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 270px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  opacity: 0;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: translate3d(-50%, -50%, -200px) scale(0.62);
  transition:
    transform 620ms cubic-bezier(0.2, 0.72, 0.15, 1),
    opacity 380ms ease,
    filter 420ms ease;
  will-change: transform, opacity;
  -webkit-tap-highlight-color: transparent;
}

.deliverable-card[data-pos="0"] {
  z-index: 8;
  opacity: 1;
  filter: saturate(1.05) brightness(1.01);
  transform: translate3d(-50%, -50%, 115px) scale(1);
}

.deliverable-card[data-pos="-1"] {
  z-index: 5;
  opacity: 0.88;
  filter: saturate(0.94) brightness(0.96);
  transform: translate3d(calc(-50% - 205px), -47%, 10px) rotateY(33deg) scale(0.76);
}

.deliverable-card[data-pos="1"] {
  z-index: 5;
  opacity: 0.88;
  filter: saturate(0.94) brightness(0.96);
  transform: translate3d(calc(-50% + 205px), -47%, 10px) rotateY(-33deg) scale(0.76);
}

.deliverable-card[data-pos="-2"] {
  z-index: 2;
  opacity: 0.34;
  filter: saturate(0.7) brightness(0.9);
  transform: translate3d(calc(-50% - 345px), -42%, -90px) rotateY(47deg) scale(0.58);
}

.deliverable-card[data-pos="2"] {
  z-index: 2;
  opacity: 0.34;
  filter: saturate(0.7) brightness(0.9);
  transform: translate3d(calc(-50% + 345px), -42%, -90px) rotateY(-47deg) scale(0.58);
}

.deliverable-card[data-pos="hidden"] {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, -240px) scale(0.48);
}

.deliverable-card:focus-visible .deliverable-book {
  outline: 4px solid rgba(34, 151, 209, 0.42);
  outline-offset: 6px;
}

.deliverable-book {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.705 / 1;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  border-radius: 8px 14px 14px 8px;
  background: #f4f0e7;
  box-shadow:
    0 30px 48px rgba(24, 62, 82, 0.20),
    0 12px 18px rgba(24, 62, 82, 0.12);
  transition: transform 340ms ease, box-shadow 340ms ease;
}

.deliverable-card[data-pos="0"] .deliverable-book {
  transform: rotateX(var(--tilt-x)) rotateY(calc(-5deg + var(--tilt-y)));
  box-shadow:
    0 42px 64px rgba(24, 62, 82, 0.24),
    0 16px 24px rgba(24, 62, 82, 0.14);
}

.deliverable-book::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -11px;
  z-index: -1;
  width: 12px;
  border-radius: 6px 0 0 6px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.36) 48%, rgba(0, 0, 0, 0.14)),
    #173e56;
  content: "";
  transform: translateZ(-6px) rotateY(15deg);
  transform-origin: right center;
}

.deliverable-book::after {
  position: absolute;
  right: 5px;
  bottom: -8px;
  left: 5px;
  z-index: -1;
  height: 10px;
  border-radius: 0 0 7px 7px;
  background:
    repeating-linear-gradient(to bottom, #fff 0 1px, #e4dfd5 1px 2px);
  box-shadow: 0 4px 5px rgba(19, 59, 82, 0.12);
  content: "";
  transform: translateZ(-5px) skewX(-7deg);
}

.deliverable-book img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  backface-visibility: hidden;
}

.deliverable-book__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(108deg, transparent 12%, rgba(255, 255, 255, 0.30) 31%, transparent 48%);
  opacity: 0.36;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateZ(3px);
}

.deliverable-card[data-pos="0"] .deliverable-book__shine {
  animation: deliverableShine 5.8s ease-in-out infinite;
}

@keyframes deliverableShine {
  0%, 48% { transform: translate3d(-32%, 0, 3px); opacity: 0.05; }
  62% { opacity: 0.38; }
  82%, 100% { transform: translate3d(28%, 0, 3px); opacity: 0.06; }
}

.deliverables-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(16, 103, 153, 0.15);
  border-radius: 50%;
  color: #126da3;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 30px rgba(36, 92, 123, 0.14);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.deliverables-nav:hover {
  background: #fff;
  box-shadow: 0 16px 34px rgba(36, 92, 123, 0.20);
  transform: translateY(-50%) scale(1.06);
}

.deliverables-nav:focus-visible {
  outline: 3px solid rgba(34, 151, 209, 0.42);
  outline-offset: 3px;
}

.deliverables-nav--prev {
  left: 5px;
}

.deliverables-nav--next {
  right: 5px;
}

.deliverables-info {
  display: grid;
  width: min(690px, 100%);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin: -2px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(31, 126, 179, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(33, 91, 122, 0.08);
  backdrop-filter: blur(12px);
}

.deliverables-info__counter {
  display: flex;
  min-width: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  border-right: 1px solid rgba(26, 111, 159, 0.12);
}

.deliverables-info__counter strong {
  color: #1584c2;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.deliverables-info__counter span {
  margin-top: 3px;
  color: #7790a0;
  font-size: 0.7rem;
  font-weight: 800;
}

.deliverables-info__copy h3 {
  margin: 0 0 5px;
  color: #123f59;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.deliverables-info__copy p {
  margin: 0;
  color: #5a7484;
  font-size: 0.82rem;
  line-height: 1.5;
}

.deliverables-dots {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px auto 0;
}

.deliverables-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8d4e4;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.deliverables-dots button.is-active {
  width: 24px;
  background: #218fc8;
}

.deliverables-dots button:focus-visible {
  outline: 2px solid #218fc8;
  outline-offset: 3px;
}

.deliverables-mobile-hint {
  display: none;
}

.deliverables-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.deliverables-cta p {
  margin: 0;
  color: #7893a2;
  font-size: 0.72rem;
  font-weight: 700;
}

/* O carrossel 3D já mostra os materiais extras; a seção antiga de bônus foi removida. */

@media (hover: hover) and (pointer: fine) {
  .deliverable-card[data-pos="0"]:hover .deliverable-book {
    box-shadow:
      0 48px 72px rgba(24, 62, 82, 0.27),
      0 17px 26px rgba(24, 62, 82, 0.16);
  }
}

@media (max-width: 760px) {
  .deliverables-3d {
    padding: 52px 0 50px !important;
  }

  .deliverables-3d .container {
    width: min(100% - 24px, 680px);
  }

  .deliverables-3d .section-label {
    margin-bottom: 11px;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
  }

  .deliverables-3d h2 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: clamp(2.12rem, 10.4vw, 3rem);
    line-height: 0.98;
  }

  .deliverables-lead {
    max-width: 355px;
    margin-bottom: 14px;
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .deliverables-kicker {
    max-width: 360px;
    gap: 5px;
    margin-bottom: 0;
  }

  .deliverables-kicker span {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }

  .deliverables-stage-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .deliverables-stage {
    height: 382px;
    perspective: 1100px;
    overflow: hidden;
  }

  .deliverables-stage::after {
    right: 18%;
    bottom: 26px;
    left: 18%;
    height: 34px;
  }

  .deliverable-card {
    width: min(56vw, 218px);
  }

  .deliverable-card[data-pos="0"] {
    transform: translate3d(-50%, -50%, 92px) scale(1);
  }

  .deliverable-card[data-pos="-1"] {
    opacity: 0.72;
    transform: translate3d(calc(-50% - 124px), -47%, -5px) rotateY(38deg) scale(0.72);
  }

  .deliverable-card[data-pos="1"] {
    opacity: 0.72;
    transform: translate3d(calc(-50% + 124px), -47%, -5px) rotateY(-38deg) scale(0.72);
  }

  .deliverable-card[data-pos="-2"],
  .deliverable-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .deliverable-card[data-pos="0"] .deliverable-book {
    transform: rotateX(var(--tilt-x)) rotateY(calc(-4deg + var(--tilt-y)));
  }

  .deliverable-book {
    border-radius: 6px 11px 11px 6px;
    box-shadow:
      0 28px 42px rgba(24, 62, 82, 0.19),
      0 10px 18px rgba(24, 62, 82, 0.11);
  }

  .deliverable-book::before {
    left: -8px;
    width: 9px;
  }

  .deliverable-book::after {
    bottom: -6px;
    height: 8px;
  }

  .deliverables-nav {
    top: auto;
    bottom: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
    transform: none;
  }

  .deliverables-nav:hover {
    transform: scale(1.04);
  }

  .deliverables-nav--prev {
    left: calc(50% - 96px);
  }

  .deliverables-nav--next {
    right: calc(50% - 96px);
  }

  .deliverables-mobile-hint {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 6px;
    margin: -3px auto 9px;
    color: #6b8798;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .deliverables-mobile-hint span {
    color: #208cc5;
    font-size: 0.9rem;
  }

  .deliverables-info {
    width: min(100%, 390px);
    gap: 12px;
    padding: 13px 13px;
    border-radius: 15px;
  }

  .deliverables-info__counter {
    min-width: 48px;
    padding-right: 11px;
  }

  .deliverables-info__counter strong {
    font-size: 1.3rem;
  }

  .deliverables-info__copy h3 {
    margin-bottom: 4px;
    font-size: 0.88rem;
    line-height: 1.18;
  }

  .deliverables-info__copy p {
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .deliverables-dots {
    margin-top: 10px;
  }

  .deliverables-cta {
    margin-top: 12px;
  }

  .deliverables-cta .button {
    width: min(100%, 330px);
  }

  .deliverables-orb {
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 390px) {
  .deliverables-stage {
    height: 356px;
  }

  .deliverable-card {
    width: min(57vw, 205px);
  }

  .deliverable-card[data-pos="-1"] {
    transform: translate3d(calc(-50% - 112px), -47%, -5px) rotateY(39deg) scale(0.70);
  }

  .deliverable-card[data-pos="1"] {
    transform: translate3d(calc(-50% + 112px), -47%, -5px) rotateY(-39deg) scale(0.70);
  }

  .deliverables-info__copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deliverable-card,
  .deliverable-book {
    transition-duration: 0.01ms !important;
  }

  .deliverable-card[data-pos="0"] .deliverable-book__shine {
    animation: none !important;
  }
}


/* =========================================================
   PONTE EMOCIONAL + ENQUADRAMENTO DO MÉTODO
   ========================================================= */
.pain-bridge {
  position: relative;
  overflow: hidden;
  padding: 82px 0 86px;
  background:
    radial-gradient(circle at 76% 40%, rgba(66, 181, 226, .15), transparent 26%),
    radial-gradient(circle at 20% 18%, rgba(54, 224, 190, .09), transparent 24%),
    linear-gradient(145deg, #061d2b 0%, #07293b 52%, #061a27 100%);
}

.pain-bridge::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(84, 201, 232, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 201, 232, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.pain-bridge__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: 18%;
  border-radius: 50%;
  background: rgba(58, 190, 229, .11);
  filter: blur(70px);
  pointer-events: none;
}

.pain-bridge__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: 62px;
}

.pain-bridge .section-label {
  margin-bottom: 14px;
  color: #70e2d1;
  text-align: left;
}

.pain-bridge h2 {
  max-width: 690px;
  margin: 0 0 24px;
  color: #f5fbff;
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
  line-height: .98;
  text-align: left;
}

.pain-bridge h2 span {
  color: #84d7ff;
}

.pain-bridge__lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: #b9cfda;
  font-size: 1.06rem;
  line-height: 1.65;
}

.pain-bridge__moments {
  display: grid;
  gap: 10px;
}

.pain-bridge__moments article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(138, 210, 237, .12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  opacity: .58;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease, border-color .35s ease;
}

.pain-bridge.is-visible .pain-bridge__moments article {
  opacity: 1;
  transform: translateY(0);
}

.pain-bridge.is-visible .pain-bridge__moments article:nth-child(2) { transition-delay: .1s; }
.pain-bridge.is-visible .pain-bridge__moments article:nth-child(3) { transition-delay: .2s; }

.pain-bridge__moments article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #76d9ff;
  background: rgba(71, 179, 227, .12);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.pain-bridge__moments strong,
.pain-bridge__moments small {
  display: block;
}

.pain-bridge__moments strong {
  margin-bottom: 4px;
  color: #f5fbff;
  font-size: .95rem;
  line-height: 1.32;
}

.pain-bridge__moments small {
  color: #9eb9c5;
  font-size: .82rem;
  line-height: 1.48;
}

.pain-bridge__turn {
  position: relative;
  margin-top: 22px;
  padding: 20px 22px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(75, 223, 180, .22);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(25, 172, 148, .13), rgba(49, 154, 205, .08));
}

.pain-bridge__turn::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(#5ee1c0, #43b9ef);
  content: "";
}

.pain-bridge__turn > span {
  display: block;
  margin-bottom: 7px;
  color: #73e1c5;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.pain-bridge__turn h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.pain-bridge__turn h3 em {
  color: #8fdcff;
  font-style: normal;
}

.pain-bridge__turn p {
  margin: 0;
  color: #b7ccd5;
  font-size: .88rem;
  line-height: 1.55;
}

.pain-door-scene {
  position: relative;
  min-height: 520px;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.pain-door-frame {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 238px;
  height: 360px;
  border: 13px solid #123c52;
  border-bottom-width: 18px;
  border-radius: 10px 10px 5px 5px;
  background: #071620;
  box-shadow: 0 34px 75px rgba(0,0,0,.32), 0 0 0 1px rgba(126, 213, 239, .07);
  transform: translateX(-50%) rotateX(1deg);
  transform-style: preserve-3d;
}

.pain-room-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 205, 111, .37), transparent 33%),
    linear-gradient(145deg, #163948 0%, #102e3d 48%, #0a222f 100%);
}

.pain-room-glow::after {
  position: absolute;
  left: 50%;
  bottom: 31px;
  width: 72px;
  height: 31px;
  border-radius: 50% 50% 37% 37%;
  background: rgba(224, 167, 88, .44);
  box-shadow: 0 0 38px rgba(255, 194, 93, .22);
  content: "";
  transform: translateX(-50%);
}

.pain-door {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #0d3349, #164e6c 42%, #0a293c 100%);
  box-shadow: inset -18px 0 28px rgba(0,0,0,.24), 11px 8px 24px rgba(0,0,0,.22);
  transform: rotateY(0deg);
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 1.25s cubic-bezier(.22,.72,.18,1);
}

.pain-bridge.is-visible .pain-door {
  transform: rotateY(-49deg);
}

.pain-door__panel {
  position: absolute;
  left: 15%;
  width: 70%;
  border: 1px solid rgba(154, 218, 241, .15);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.07);
}

.pain-door__panel--top { top: 12%; height: 31%; }
.pain-door__panel--bottom { bottom: 12%; height: 38%; }

.pain-door__handle {
  position: absolute;
  top: 51%;
  right: 19px;
  width: 31px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, #d0a34f, #f5d589);
  box-shadow: 0 0 0 4px rgba(6, 22, 31, .28), 0 2px 8px rgba(0,0,0,.25);
}

.pain-door__handle::after {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5bb66;
  content: "";
  transform: translateY(-50%);
}

.pain-thought {
  position: absolute;
  z-index: 4;
  max-width: 176px;
  padding: 10px 13px;
  border: 1px solid rgba(163, 222, 241, .16);
  border-radius: 999px;
  color: #d8edf5;
  background: rgba(9, 37, 52, .84);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  font-size: .75rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(9px) scale(.96);
  transition: opacity .55s ease, transform .55s ease;
}

.pain-bridge.is-visible .pain-thought { opacity: 1; transform: translateY(0) scale(1); }
.pain-thought--one { top: 18px; left: 2%; transition-delay: .35s; }
.pain-thought--two { top: 128px; right: -3%; transition-delay: .52s; }
.pain-thought--three { top: 304px; left: -2%; transition-delay: .68s; }

.pain-door-caption {
  position: absolute;
  left: 50%;
  bottom: 10px;
  display: flex;
  width: min(360px, 100%);
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9dc3d2;
  font-size: .77rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
}

.pain-door-caption span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #5ce0bf;
  box-shadow: 0 0 0 5px rgba(92, 224, 191, .1);
}

/* Reenquadramento da seção 3D: ferramentas do método, não "ebooks". */
.deliverables-3d {
  padding-top: 82px;
}

.deliverables-3d .section-label {
  color: #087bba;
}

.deliverables-3d h2 {
  max-width: 780px;
}

.deliverables-kicker span:first-child {
  background: linear-gradient(180deg, #e9f7ff, #d7efff);
  border-color: #bcdff4;
  color: #126b9f;
}

/* Hero autossuficiente com as próprias capas */
.hero-product--covers {
  width: min(720px, 96vw);
  margin-bottom: 26px;
}

.hero-cover-stack {
  position: relative;
  width: min(610px, 91vw);
  height: clamp(280px, 43vw, 430px);
  margin: 0 auto;
  perspective: 1150px;
  transform-style: preserve-3d;
}

.hero-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(150px, 23vw, 235px) !important;
  height: auto !important;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 52px rgba(0,0,0,.31);
  transform-origin: center bottom;
}

.hero-cover--center { z-index: 3; transform: translate(-50%, -50%) rotateY(-2deg) translateZ(45px); }
.hero-cover--left { z-index: 1; transform: translate(-108%, -46%) rotateY(19deg) rotateZ(-5deg) scale(.88); opacity: .83; }
.hero-cover--right { z-index: 2; transform: translate(8%, -45%) rotateY(-18deg) rotateZ(5deg) scale(.9); opacity: .88; }

/* Mockup do plano completo sem depender de arquivo externo */
.complete-product--covers {
  min-height: 225px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.complete-cover-stack {
  position: relative;
  width: 260px;
  height: 210px;
  perspective: 900px;
}

.complete-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 16px 28px rgba(11, 46, 65, .2);
}

.complete-cover--center { z-index: 3; transform: translate(-50%, -50%) translateZ(24px); }
.complete-cover--left { z-index: 1; transform: translate(-112%, -45%) rotate(-7deg) scale(.9); }
.complete-cover--right { z-index: 2; transform: translate(12%, -44%) rotate(7deg) scale(.91); }

@media (max-width: 800px) {
  .pain-bridge {
    padding: 64px 0 66px;
  }

  .pain-bridge__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pain-bridge .section-label,
  .pain-bridge h2,
  .pain-bridge__lead {
    text-align: center;
  }

  .pain-bridge h2 {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.3rem, 10.4vw, 3.55rem);
  }

  .pain-bridge__lead {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .pain-bridge__moments {
    max-width: 560px;
    margin: 0 auto;
  }

  .pain-bridge__turn {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .pain-door-scene {
    width: min(430px, 100%);
    min-height: 440px;
    margin: -4px auto 0;
  }

  .pain-door-frame {
    top: 54px;
    width: 190px;
    height: 292px;
    border-width: 10px;
    border-bottom-width: 14px;
  }

  .pain-thought {
    max-width: 151px;
    padding: 8px 11px;
    font-size: .68rem;
  }

  .pain-thought--one { top: 9px; left: 1%; }
  .pain-thought--two { top: 105px; right: 0; }
  .pain-thought--three { top: 254px; left: 0; }

  .pain-door-caption {
    bottom: 12px;
    width: 92%;
  }

  .deliverables-3d {
    padding-top: 64px;
  }

  .hero-cover-stack {
    height: 335px;
  }

  .hero-cover {
    width: clamp(142px, 39vw, 185px) !important;
  }
}

@media (max-width: 480px) {
  .pain-bridge {
    padding: 55px 0 58px;
  }

  .pain-bridge__grid {
    gap: 20px;
  }

  .pain-bridge h2 {
    font-size: clamp(2.18rem, 11.3vw, 3.15rem);
  }

  .pain-bridge__lead {
    margin-bottom: 22px;
    font-size: .93rem;
    line-height: 1.58;
  }

  .pain-bridge__moments article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 12px 13px;
  }

  .pain-bridge__moments article > span {
    width: 34px;
    height: 34px;
  }

  .pain-bridge__moments strong { font-size: .88rem; }
  .pain-bridge__moments small { font-size: .76rem; }

  .pain-bridge__turn {
    margin-top: 16px;
    padding: 17px 17px 17px 20px;
  }

  .pain-bridge__turn h3 {
    font-size: 1.08rem;
  }

  .pain-door-scene {
    min-height: 395px;
  }

  .pain-door-frame {
    top: 49px;
    width: 168px;
    height: 258px;
  }

  .pain-thought--one { top: 5px; }
  .pain-thought--two { top: 94px; }
  .pain-thought--three { top: 222px; }

  .pain-door-caption {
    font-size: .69rem;
  }

  .hero-cover-stack {
    height: 295px;
  }

  .hero-cover {
    width: clamp(128px, 37vw, 160px) !important;
  }

  .complete-product--covers {
    min-height: 198px;
  }

  .complete-cover-stack {
    transform: scale(.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pain-door,
  .pain-bridge__moments article,
  .pain-thought {
    transition: none !important;
  }

  .pain-bridge .pain-door {
    transform: rotateY(-38deg);
  }

  .pain-bridge .pain-thought,
  .pain-bridge .pain-bridge__moments article {
    opacity: 1;
    transform: none;
  }
}

/* AJUSTES — PROVAS SOCIAIS + GARANTIA DE 7 DIAS */
.testimonials {
  min-height: 0;
  padding-top: 76px;
  padding-bottom: 72px;
}

.testimonials h2 span {
  color: #1978b8;
}

.guarantee-seal strong {
  margin-top: 1px;
  font-size: 4.55rem;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.guarantee-seal span {
  width: 112px;
  max-width: 72%;
  margin-top: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  line-height: 1.16;
  overflow-wrap: normal;
  word-break: normal;
}

.guarantee-note {
  max-width: 610px;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(25, 120, 184, 0.15);
  color: #607f91;
  font-size: 0.72rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .testimonials {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .guarantee-seal strong {
    font-size: 3.8rem;
  }

  .guarantee-seal span {
    width: 96px;
    font-size: 0.57rem;
    letter-spacing: 0.08em;
  }

  .guarantee-note {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

/* =========================================================
   AJUSTE DE CONVERSÃO — MENOS TEXTO, MAIS DOR E CURIOSIDADE
   ========================================================= */
.announcement {
  color: #063b2b !important;
  background: linear-gradient(90deg, #63f2ad 0%, #37e594 48%, #63f2ad 100%) !important;
  border-bottom: 1px solid rgba(5, 118, 76, .25) !important;
  box-shadow: 0 5px 18px rgba(25, 207, 125, .18);
}

.pain-bridge {
  padding-top: 66px;
  padding-bottom: 68px;
}

.pain-bridge__grid {
  gap: 48px;
}

.pain-bridge h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.pain-bridge__moments {
  gap: 8px;
}

.pain-bridge__moments article {
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 11px 14px;
}

.pain-bridge__moments article > span {
  width: 34px;
  height: 34px;
}

.pain-bridge__moments strong {
  margin: 0;
  font-size: .92rem;
}

.pain-bridge__moments small {
  display: none;
}

.pain-bridge__turn {
  margin-top: 16px;
  padding: 17px 20px 17px 22px;
}

.pain-bridge__turn > span {
  margin-bottom: 5px;
}

.pain-bridge__turn h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.pain-bridge__turn p {
  font-size: .83rem;
  line-height: 1.42;
}

.pain-door-scene {
  min-height: 450px;
}

.pain-door-caption {
  display: none;
}

.deliverables-3d {
  padding-top: 62px;
}

.deliverables-3d h2 {
  max-width: 700px;
  margin-bottom: 12px;
}

.deliverables-lead {
  max-width: 620px !important;
  margin-bottom: 22px !important;
  font-size: 1rem !important;
  line-height: 1.48 !important;
}

.deliverables-kicker {
  margin-bottom: 24px !important;
}

.deliverables-kicker span {
  padding: 7px 12px !important;
  font-size: .65rem !important;
}

.deliverables-info__copy p {
  line-height: 1.38 !important;
}

@media (max-width: 800px) {
  .pain-bridge {
    padding: 50px 0 50px;
  }

  .pain-bridge__grid {
    gap: 18px;
  }

  .pain-bridge h2 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 9.8vw, 3.2rem);
  }

  .pain-door-scene {
    min-height: 325px;
    margin-top: -8px;
  }

  .pain-door-frame {
    top: 42px;
    width: 158px;
    height: 242px;
  }

  .pain-thought {
    max-width: 142px;
    padding: 7px 10px;
    font-size: .64rem;
  }

  .pain-thought--one { top: 4px; left: 2%; }
  .pain-thought--two { top: 80px; right: 1%; }
  .pain-thought--three { display: none; }

  .deliverables-3d {
    padding-top: 50px;
  }

  .deliverables-3d h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .deliverables-lead {
    margin-bottom: 16px !important;
    font-size: .92rem !important;
  }

  .deliverables-kicker {
    gap: 6px !important;
    margin-bottom: 16px !important;
  }

  .deliverables-kicker span {
    padding: 6px 9px !important;
    font-size: .59rem !important;
  }
}

@media (max-width: 480px) {
  .announcement {
    min-height: 42px;
    padding: 7px 12px;
    font-size: .64rem;
    letter-spacing: .1em;
  }

  .pain-bridge {
    padding: 44px 0 44px;
  }

  .pain-bridge .section-label {
    margin-bottom: 10px;
  }

  .pain-bridge h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 10.4vw, 2.85rem);
  }

  .pain-bridge__moments article {
    grid-template-columns: 33px 1fr;
    gap: 9px;
    padding: 10px 11px;
  }

  .pain-bridge__moments article > span {
    width: 31px;
    height: 31px;
    font-size: .62rem;
  }

  .pain-bridge__moments strong {
    font-size: .84rem;
    line-height: 1.2;
  }

  .pain-bridge__turn {
    margin-top: 13px;
    padding: 15px 15px 15px 18px;
  }

  .pain-bridge__turn h3 {
    font-size: 1rem;
  }

  .pain-bridge__turn p {
    font-size: .78rem;
  }

  .pain-door-scene {
    min-height: 285px;
  }

  .pain-door-frame {
    top: 38px;
    width: 142px;
    height: 218px;
  }

  .pain-thought--one { top: 0; }
  .pain-thought--two { top: 72px; }

  .deliverables-3d {
    padding-top: 44px;
  }

  .deliverables-3d .section-label {
    margin-bottom: 10px;
  }

  .deliverables-3d h2 {
    margin-bottom: 9px;
    font-size: clamp(2rem, 10.6vw, 2.85rem);
  }

  .deliverables-lead {
    max-width: 340px !important;
    margin-bottom: 13px !important;
    font-size: .86rem !important;
    line-height: 1.4 !important;
  }

  .deliverables-kicker {
    margin-bottom: 10px !important;
  }
}


/* =========================================================
   HERO PROMOCIONAL — PREÇO, URGÊNCIA VISUAL E CTA PULSANTE
   ========================================================= */
.announcement {
  color: #ffffff !important;
  background: linear-gradient(90deg, #b80f21 0%, #ed1c35 48%, #b80f21 100%) !important;
  border-bottom: 1px solid rgba(106, 0, 13, .45) !important;
  box-shadow: 0 5px 18px rgba(184, 15, 33, .22) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.hero-price-note del {
  display: inline-block;
  margin: 0 .18em;
  color: #6d8797;
  font-weight: 800;
  text-decoration-color: #d9253e;
  text-decoration-thickness: 2px;
}

.hero-price-note strong {
  display: inline-block;
  margin-left: .1em;
  color: #0877b7;
  font-size: 1.2rem;
  font-weight: 950;
}

.hero .button--primary.js-scroll-offer {
  position: relative;
  isolation: isolate;
  animation: hero-cta-pulse 1.65s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.hero .button--primary.js-scroll-offer::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(35, 151, 211, .42);
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: hero-cta-ring 1.65s ease-out infinite;
  pointer-events: none;
}

@keyframes hero-cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 13px 28px rgba(23, 111, 168, .24), inset 0 -2px 0 rgba(5, 55, 88, .16);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 17px 36px rgba(23, 111, 168, .38), inset 0 -2px 0 rgba(5, 55, 88, .16);
  }
}

@keyframes hero-cta-ring {
  0% {
    opacity: .65;
    transform: scale(.98);
  }
  75%, 100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (max-width: 700px) {
  .announcement {
    min-height: 42px;
    padding: 8px 14px;
    font-size: .72rem;
    line-height: 1.22;
    letter-spacing: .1em;
  }

  .hero-price-note {
    font-size: .9rem;
  }

  .hero-price-note strong {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .button--primary.js-scroll-offer,
  .hero .button--primary.js-scroll-offer::after {
    animation: none !important;
  }
}

/* =========================================================
   HERO — MOCKUP ANTES E DEPOIS
   ========================================================= */
.hero-product--before-after {
  position: relative;
  width: min(820px, 96vw) !important;
  margin: -2px auto 18px !important;
  isolation: isolate;
  overflow: visible;
}

.hero-transformation-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 72%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(48, 166, 221, .24) 0%,
    rgba(64, 184, 226, .12) 43%,
    rgba(255, 255, 255, 0) 72%);
  filter: blur(16px);
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.hero-transformation-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100% !important;
  max-width: 820px !important;
  height: auto !important;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(19, 73, 105, .18));
  transform: translateZ(0);
  animation: hero-transformation-float 4.8s ease-in-out infinite;
}

@keyframes hero-transformation-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 700px) {
  .hero-product--before-after {
    width: min(430px, 106vw) !important;
    margin: 0 auto 16px !important;
  }

  .hero-transformation-image {
    width: 106% !important;
    max-width: none !important;
    margin-left: -3%;
    filter: drop-shadow(0 16px 15px rgba(19, 73, 105, .16));
  }

  .hero-transformation-glow {
    width: 86%;
    height: 72%;
    filter: blur(12px);
  }
}

@media (max-width: 430px) {
  .hero-product--before-after {
    width: 108vw !important;
    margin-left: calc(50% - 54vw) !important;
    margin-bottom: 12px !important;
  }

  .hero-transformation-image {
    width: 100% !important;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-transformation-image {
    animation: none !important;
  }
}


/* =========================================================
   PRICING PROMO UPDATES
   ========================================================= */
.price--promo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px 10px;
}

.price__from {
  display: block;
  width: 100%;
  margin-bottom: 3px;
  color: #cf4b55;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.price__from del {
  color: inherit;
  text-decoration-thickness: 2px;
}

.price-card--complete .price__from {
  color: #ff9ea3;
}

.best-choice {
  color: #fff;
  background: linear-gradient(135deg, #ff4747 0%, #d91515 100%);
  box-shadow: 0 10px 24px rgba(223, 31, 31, 0.3);
  animation: pricing-offer-pulse 1.35s ease-in-out infinite;
}

.last-chance {
  margin-top: 16px;
}

.button--pulse {
  position: relative;
  isolation: isolate;
  animation: hero-cta-pulse 1.65s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.button--pulse::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(35, 151, 211, .34);
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: hero-cta-ring 1.65s ease-out infinite;
  pointer-events: none;
}

.price-card--complete .button--pulse::after {
  border-color: rgba(255, 93, 93, 0.4);
}

.price-card--basic .button--pulse::after {
  border-color: rgba(29, 130, 186, 0.34);
}

@keyframes pricing-offer-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 10px 24px rgba(223, 31, 31, 0.28);
  }
  50% {
    transform: translateX(-50%) scale(1.06);
    box-shadow: 0 16px 32px rgba(223, 31, 31, 0.4);
  }
}

@media (max-width: 820px) {
  .price__from {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .best-choice,
  .button--pulse,
  .button--pulse::after {
    animation: none !important;
  }
}

/* =========================================================
   PRICING — BUNDLE + COMPOSIÇÃO REAL DOS PLANOS
   ========================================================= */
.plan-count {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid #cde1ea;
  border-radius: 999px;
  color: #147eb4;
  background: #eef9ff;
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-count--complete {
  border-color: rgba(255, 255, 255, .2);
  color: #efffff;
  background: rgba(255, 255, 255, .09);
}

.plan-features li div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.plan-features li strong {
  color: inherit;
  font-size: .82rem;
  line-height: 1.28;
}

.plan-features li small {
  color: #6d8793;
  font-size: .69rem;
  line-height: 1.42;
}

.plan-features--complete li small {
  color: #b9d6dc;
}

.plan-features--basic {
  flex: 0 0 auto;
  grid-template-rows: none;
  gap: 10px;
}

.plan-features--basic li {
  min-height: 92px;
  align-items: flex-start;
  padding: 15px 14px;
}

.price-card--basic {
  min-height: 720px;
}

.complete-product--bundle {
  height: clamp(300px, 31vw, 385px);
  margin: -4px 0 6px;
  overflow: visible;
}

.complete-bundle-image {
  display: block;
  width: min(420px, 100%) !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain;
  filter: drop-shadow(0 23px 24px rgba(0, 0, 0, .22));
  transform: translateY(2px);
}

@media (max-width: 820px) {
  .price-card--basic {
    min-height: auto;
  }

  .complete-product--bundle {
    height: auto;
    min-height: 300px;
    margin: -8px -12px 4px;
  }

  .complete-bundle-image {
    width: min(470px, 112%) !important;
  }

  .plan-features--basic li {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .complete-product--bundle {
    min-height: 270px;
  }

  .complete-bundle-image {
    width: 116% !important;
  }
}
