/* ================== 00: TOKENS & BASE ================== */
:root {
  --bg1: #0b1a30;
  --bg2: #0a2a3b;
  --grad: linear-gradient(135deg, #0b1a30 0%, #0a2a3b 45%, #1e7f3a 100%);
  --panel: #0f2436;
  --txt: #eaf4ff;
  --muted: #a8bfd2;
  --lime: #c7ea2b;
  --lime-ink: #0e1d12;
  --blue: #1ab3e6;
  --max: 1180px;
  --pad: 16px;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg1);
  color: var(--txt);
  font: 400 16px/1.5 Inter, system-ui, Segoe UI, Roboto, Arial;
}
img {
  max-width: 100%;
  display: block;
}
.u-upper {
  text-transform: uppercase;
}
.u-left {
  text-align: left;
  flex: 1;
  max-width: 50%;
  min-width: 400px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: 0.25s transform, 0.25s box-shadow, 0.25s background;
}
.btn:active {
  transform: translateY(1px);
}
.btn--pill {
  height: 38px;
  padding: 0 14px;
}
.btn--lime {
  background: linear-gradient(90deg, var(--lime), #e6fb6a);
  color: var(--lime-ink);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(199, 234, 43, 0.25);
  text-decoration: none;
}
.btn--pink {
  background-color: #e35ae0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.btn--cta {
  background: linear-gradient(90deg, var(--lime), #e6fb6a);
  color: var(--lime-ink);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(199, 234, 43, 0.25);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn--cta .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
}
.btn--cta .bar:after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  height: 100%;
  width: 28%;
  background: #0c1a14;
  animation: slide 2s linear infinite;
}
@keyframes slide {
  to {
    left: 100%;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 179, 230, 0.18);
  color: #b7ecff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
}

/* ================== 01: TOP NOTICE ================== */
.topnotice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0c1833;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.topnotice.show {
  transform: translateY(0);
  opacity: 1;
}
.topnotice__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}
.topnotice__msg {
  color: #cfe3ff;
  font-weight: 800;
}
.topnotice__close {
  all: unset;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  color: #cfe3ff;
  opacity: 0.7;
}
.topnotice__close:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
/* 02) variação MOBILE: fixa embaixo, coluna e CTA grande */
@media (max-width: 560px) {
  .topnotice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    background: #0c1833;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    transform: translateY(100%); /* entra de baixo pra cima */
    opacity: 0;
  }
  .topnotice.show {
    transform: translateY(0);
    opacity: 1;
  }

  .topnotice__inner {
    padding: 14px 16px env(safe-area-inset-bottom); /* respeita notch */
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .topnotice__msg {
    text-align: center;
    font-weight: 900;
    color: #cfe3ff;
  }

  /* CTA grande com glow */
  .topnotice .btn {
    height: 48px;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(199, 234, 43, 0.25),
      0 0 0 6px rgba(236, 38, 132, 0); /* reserva p/ futuros efeitos */
  }

  /* X de fechar no canto direito, flutuando */
  .topnotice__close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
  }
}
/* ================== 02: HERO ================== */
.hero {
  position: relative;
  background: var(--grad);
  padding: 120px 0 120px;
  isolation: isolate;
  min-height: 80vh;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 120% at 100% 0,
    rgba(26, 179, 230, 0.22),
    transparent 55%
  );
}
.hero img {
  position: absolute;
  z-index: 0;
  border-radius: 20px;
  right: -24%;
  height: 100%;
  bottom: 0;
}
@media (max-width: 1500px) {
  .hero img {
    height: 85%;
    right: -34%;
  }
}
@media (max-width: 768px) {
  .hero img {
    width: 100%;
    height: auto;
    position: static;
  }
  .hero {
    padding-bottom: 0;
  }
  .qsteps__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  flex-wrap: wrap;
}
.hero__title {
  margin: 10px 0 6px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 18px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0 40px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 520px;
}
.cd__box {
  background: #0e3040;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cd__num {
  font-size: 28px;
  font-weight: 900;
  display: block;
}
.cd__lab {
  color: #80a3b9;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero__visual {
  position: relative;
}
.hero__glow {
  position: absolute;
  inset: auto -40px -40px -40px;
  background: radial-gradient(
    60% 60% at 70% 30%,
    rgba(199, 234, 43, 0.35),
    transparent 60%
  );
  filter: blur(40px);
  z-index: 0;
}
.hero__img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.mob {
  display: none;
}
/* ================== 00: TOKENS & BASE ================== */
:root {
  --bg1: #0b1a30;
  --bg2: #0a2a3b;
  --grad: linear-gradient(135deg, #0b1a30 0%, #0a2a3b 45%, #1e7f3a 100%);
  --panel: #0f2436;
  --txt: #eaf4ff;
  --muted: #a8bfd2;
  --lime: #c7ea2b;
  --lime-ink: #0e1d12;
  --blue: #1ab3e6;
  --max: 1180px;
  --pad: 16px;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ================== 02.6: HERO – MARQUEE INFINITA ================== */
.marquee {
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  bottom: 0;
  width: 100%;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(199, 234, 43, 1) 0%,
    rgba(199, 234, 43, 0) 100%
  );
}
.marquee::after {
  right: 0;
  transform: scaleX(-1);
  background: linear-gradient(
    90deg,
    rgba(230, 251, 106, 1) 0%,
    rgba(230, 251, 106, 0) 100%
  );
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  will-change: transform;
  padding: 10px 0;
  min-height: 44px;
  animation: marqueeScroll 120s linear infinite;
}
.marquee__item {
  font-weight: 900;
  letter-spacing: 0.06em;
}
.marquee__dot {
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* reduz movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ================== BREAKPOINTS (mantidos) ================== */
@media (max-width: 560px) {
  .marquee__track {
    gap: 16px;
    min-height: 38px;
    padding: 8px 0;
  }
  .hero__img {
    display: none;
  }
  .hero__img.mob {
    display: block;
  }
}

/* ================== 03: PROMO ELEMENTS (cupom) ================== */
/* 03.1 Faixa diagonal */
.promo-ribbon {
  position: absolute;
  top: 24px;
  left: -32px;
  z-index: 2;
  transform: rotate(-7deg);
  background: linear-gradient(90deg, rgba(199, 234, 43, 0.95), #e6fb6a);
  color: #0c1a14;
  padding: 10px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(199, 234, 43, 0.25);
}
.promo-ribbon span {
  font-weight: 900;
  letter-spacing: 0.04em;
}
.promo-ribbon:after {
  /* brilho/shine */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 60%
  );
  filter: blur(8px);
  mix-blend-mode: overlay;
  animation: shine 2.8s linear infinite;
}
@keyframes shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

/* 03.2 Selo redondo */
.promo-sticker {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, transparent 40%),
    linear-gradient(180deg, #e6fb6a, #c7ea2b);
  color: #0e1d12;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(199, 234, 43, 0.35);
  animation: pulse 3.2s ease-in-out infinite;
}
.promo-sticker span {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.promo-sticker small {
  font-weight: 900;
  letter-spacing: 0.08em;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* 03.3 Peel + Drawer */
.coupon-peel {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%) rotate(45deg);
  transform-origin: top right;
  background: linear-gradient(180deg, #15224e, #0c1833);
  color: #cfe3ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.coupon-peel:focus-visible {
  outline: 2px solid #e6fb6a;
  outline-offset: 4px;
}
.coupon-drawer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(6px);
}
.coupon-drawer.open {
  transform: translateY(0);
}
.coupon-drawer__inner {
  background: rgba(12, 24, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 12px;
  padding: 16px 18px;
  min-width: 280px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.drawer-note {
  color: #9fb4c7;
  font-size: 13px;
  margin: 4px 0 0;
}

/* ================== 03.4: CHIP DE CUPOM (feedback copiado) ================== */
.coupon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 251, 106, 0.12);
  border: 1px dashed rgba(230, 251, 106, 0.6);
  color: #e6fb6a;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.coupon-copy {
  all: unset;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), #e6fb6a);
  color: #0e1d12;
  cursor: pointer;
  font-weight: 800;
  min-width: 88px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

/* estado copiado */
.coupon-chip.copied {
  background: rgba(230, 251, 106, 0.22);
  border-color: #e6fb6a;
  box-shadow: 0 0 0 4px rgba(230, 251, 106, 0.25);
  animation: chipPulse 0.5s ease;
}
.coupon-copy.is-copied {
  background: #0e1d12;
  color: #e6fb6a;
}

@keyframes chipPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ================== 04: COMO FUNCIONA (pratico) ================== */
.qsteps {
  position: relative;
  background: #0b1f2b;
  padding: 64px 0;
}
.qsteps__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.qsteps__head h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 0;
}
.qsteps__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.qsteps__badge {
  background: rgba(230, 251, 106, 0.16);
  color: #e6fb6a;
  border: 1px solid rgba(230, 251, 106, 0.45);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
}
.qsteps__time {
  color: var(--muted);
  font-size: 14px;
}

/* chips */
.qsteps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qs__chip {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 12px;
  color: var(--txt);
  text-align: left;
  cursor: pointer;
  transition: 0.25s transform, 0.25s box-shadow;
  box-shadow: var(--shadow);
}
.qs__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.qs__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), #e6fb6a);
  color: #0e1d12;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(230, 251, 106, 0.25);
}
.qs__title {
  font-weight: 800;
}
.qs__chip[aria-expanded="true"] {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* detalhes */
.qsteps__details {
  margin-top: 16px;
  position: relative;
}
.qs__detail {
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  animation: qsFade 0.25s ease;
}
.qs__h {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}
.qs__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
@keyframes qsFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* responsivo */
@media (max-width: 1100px) {
  .qsteps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .qsteps__grid {
    grid-template-columns: 1fr;
  }
}
/* ================== 04: COMO FUNCIONA (pratico) ================== */
.qsteps {
  position: relative;
  background: #0b1f2b;
  padding: 64px 0;
}
.qsteps .u-upper {
  text-transform: uppercase;
}
.qsteps .btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}
.qsteps .btn.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: #eaf4ff;
}
.qsteps .btn.btn--cta {
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  font-weight: 900;
}

.qsteps__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.qsteps__head h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 0;
}
.qsteps__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.qsteps__badge {
  background: rgba(230, 251, 106, 0.16);
  color: #e6fb6a;
  border: 1px solid rgba(230, 251, 106, 0.45);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
}
.qsteps__time {
  color: #a8bfd2;
  font-size: 14px;
}
.qsteps__hint {
  margin: 6px 0 14px;
  color: #a8bfd2;
  font-size: 14px;
}

/* grid de chips */
.qsteps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plansv2__coupon-chip .coupon-chip {
  background: none;
  border: none;
}
.qs__chip {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 14px;
  color: #eaf4ff;
  cursor: pointer;
  transition: 0.22s transform, 0.22s box-shadow, 0.22s border-color;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.qs__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  border-color: rgba(230, 251, 106, 0.35);
}
.qs__chip:focus-visible {
  outline: 2px solid #c7ea2b;
  outline-offset: 2px;
}
.qs__chip[aria-expanded="true"] {
  border-color: #e6fb6a;
  box-shadow: 0 0 0 3px rgba(230, 251, 106, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.qs__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(230, 251, 106, 0.25);
}
.qs__title {
  font-weight: 800;
}
.qs__icon {
  margin-left: auto;
  opacity: 0.8;
  transition: 0.25s transform, 0.25s opacity;
}
.qs__chip[aria-expanded="true"] .qs__icon {
  transform: rotate(90deg);
  opacity: 1;
}

/* pulse convidativo */
.qs__pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120px 60px at 12% 50%,
    rgba(230, 251, 106, 0.18),
    transparent 60%
  );
  opacity: 0;
  animation: qsPulse 2.8s ease-in-out infinite;
}
@keyframes qsPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

/* ripple ao clicar */
.qs__chip .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(230, 251, 106, 0.35);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(12);
    opacity: 0;
  }
}

/* área de detalhes */
.qsteps__details {
  margin-top: 16px;
  position: relative;
}
.qs__detail {
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: qsFade 0.25s ease;
}
.qs__h {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}
.qs__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
@keyframes qsFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* responsivo */
@media (max-width: 1100px) {
  .qsteps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .qsteps__grid {
    grid-template-columns: 1fr;
  }
}
/* slot onde o detalhe entra no mobile */
.qs__slot {
  display: none;
}

/* margin do detalhe quando renderizado no slot */
@media (max-width: 720px) {
  .qs__slot {
    display: block;
  }
  .qs__slot .qs__detail {
    margin-top: 10px; /* fica colado ao chip correspondente */
  }
}

/* opcional: um “conector” sutil entre chip e detalhe no mobile */
@media (max-width: 720px) {
  .qs__slot .qs__detail {
    position: relative;
  }
  .qs__slot .qs__detail::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 26px; /* alinha com o número do chip */
    width: 12px;
    height: 12px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: linear-gradient(180deg, #0f2a38, #0b1f2b);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ================== 05: OFERTA 50% ================== */
.offer {
  position: relative;
  background: var(--grad);
  padding: 64px 0;
  isolation: isolate;
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 75% 20%,
    rgba(26, 179, 230, 0.18),
    transparent 55%
  );
  z-index: 0;
}
.offer__grid {
  position: relative;
  z-index: 1;
  display: flex;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.offer__title {
  margin: 0 0 6px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.offer__sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 18px;
}
.offer__cta {
  display: inline-flex;
}

.offer__timer {
  justify-self: end;
  text-align: center;
}
.offer__label {
  color: #cfe3ff;
  font-weight: 900;
  margin-bottom: 12px;
}
.countdown--lg .cd__box {
  background: linear-gradient(180deg, #0f6d8d, #0e5a78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 96px;
  padding: 18px 12px;
  border-radius: 12px;
}
.countdown--lg .cd__num {
  font-size: 36px;
}
.countdown--lg .cd__lab {
  font-size: 11px;
  opacity: 0.9;
}

/* responsivo */
@media (max-width: 1024px) {
  .offer__grid {
    grid-template-columns: 1fr;
  }
  .offer__timer {
    justify-self: start;
  }
}
@media (max-width: 560px) {
  .offer {
    padding: 48px 0;
  }
  .offer__title {
    font-size: 32px;
  }
  .countdown--lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 360px;
  }
  .countdown--lg .cd__box {
    min-width: auto;
  }
}
/* ================== 06: VALOR / ESTRATÉGIA ================== */
.value {
  position: relative;
  background: #0b1f2b;
  padding: 72px 0;
  overflow: hidden;
}
.value__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.value__title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 36px;
  line-height: 1.15;
}
.value__title span {
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value__lead {
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 12px;
}

/* visual sticky */
.value__visual {
  position: relative;
}
.value__figure {
  position: sticky;
  top: 88px;
  display: grid;
  place-items: center;
}
.value__people {
  width: min(420px, 90%);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}
.value__phones {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 230px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55));
}
.value__glow {
  position: absolute;
  inset: auto -80px -80px -80px;
  background: radial-gradient(
    60% 60% at 60% 40%,
    rgba(199, 234, 43, 0.25),
    transparent 60%
  );
  filter: blur(50px);
}

/* benefícios */
.vlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.vitem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
  transform: translateY(10px);
  opacity: 0;
  transition: 0.5s ease transform, 0.5s ease opacity, 0.2s ease box-shadow;
}
.vitem:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}
.vicon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(230, 251, 106, 0.22);
}
.vh3 {
  margin: 2px 0 4px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.vp {
  margin: 0;
  color: #a8bfd2;
}

/* reveal in */
.vitem.is-in {
  transform: none;
  opacity: 1;
}

/* responsivo */
@media (max-width: 1100px) {
  .value__grid {
    grid-template-columns: 1fr;
  }
  .value__figure {
    position: relative;
    top: auto;
  }
  .value__phones {
    right: 6%;
    bottom: -12px;
  }
}
@media (max-width: 560px) {
  .value {
    padding: 56px 0;
  }
  .value__title {
    font-size: 28px;
  }
  .vlist {
    grid-template-columns: 1fr;
  }
  .value__phones {
    display: none;
  } /* simplifica no super-mobile */
}
/* ================== 07: PLANOS v2 ================== */
.plans-v2 {
  position: relative;
  background: var(--grad);
  padding: 72px 0;
  text-align: center; /* centraliza headline + toggle */
}
.pfull__copy {
  text-align: center;
}

/* glow sutil */

/* botões padrão */
.plans-v2 .btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}
.plans-v2 .btn--pill {
  height: 40px;
}
.plans-v2 .btn--lime {
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  font-weight: 900;
}
.plans-v2 .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #eaf4ff;
  text-decoration: none;
}
.plansv2__premium button {
  font-weight: 600;
}

/* === HEADLINE + CUPOM === */
.plansv2__head {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}
.plansv2__head h2 {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 32px;
}
.plansv2__coupon {
  position: relative;
  z-index: 2;
}
.plansv2__coupon-chip {
  display: inline-block;
  background: rgba(230, 251, 106, 0.14);
  border: 1px dashed rgba(230, 251, 106, 0.6);
  color: #e6fb6a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.plansv2__coupon-chip .coupon-chip {
  background: none;
  border: none;
}

/* === TOGGLE VISUAL MELHORADO === */
.plan-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 500px;
}
.plan-toggle__btn {
  flex: 1;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #cfe3ff;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}
.plan-toggle__btn:hover {
  color: #fff;
}
.plan-toggle__btn.is-active {
  background: #00bcd4;
  color: #0b1d32;
  box-shadow: inset 0 0 0 2px rgba(230, 251, 106, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.plan-toggle__badge {
  margin-left: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf4fe;
  color: #0f2a38;
  font-weight: 700;
  position: relative;
  top: -1px;
  border: 1px solid;
}

/* === CARDS === */
.plansv2__table {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
}
.pwide {
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  flex: 1;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.pwide__grid {
  padding: 18px 20px;
}
.pwide--stack {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 14px;
  padding: 20px;
}
.pwide__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pwide__head--stack {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
  position: relative;
}
.pwide__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 28px;
}
.pwide__tag {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #cfe3ff;
}
.pwide__tag--save {
  background: rgba(26, 179, 230, 0.16);
  border-color: rgba(26, 179, 230, 0.35);
  color: #bfefff;
}
.pwide__most {
  position: absolute;
  right: 10px;
  top: -10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(198, 235, 42, 0.18);
  color: #e6fb6a;
  border: 1px solid rgba(198, 235, 42, 0.45);
  display: none;
}
.pwide--popular .pwide__most {
  display: inline-block;
}
.pwide__subtitle {
  color: #bcd3e8;
  font-size: 14px;
  font-weight: 400;
  margin: 4px 20px 0;
}

/* preços */
.pwide__muted {
  color: #9fb4c7;
  font-size: 13px;
  margin: 2px 0;
}
.pwide__strike {
  color: #cbd8e6;
  opacity: 0.65;
  text-decoration: line-through;
  font-weight: 900;
  font-size: 20px;
  margin: 0;
}
.pwide__ribbon {
  margin: 12px 0;
  background: rgba(198, 235, 42, 0.18);
  color: #d4f565;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
}
.pwide__price {
  font-size: 50px;
  font-weight: 900;
  margin: 6px 0 0;
  line-height: 0.95;
}
.pwide__unit {
  font-size: 18px;
  opacity: 0.9;
  margin-left: 4px;
}
.pwide__mini {
  display: block;
  color: #9fb4c7;
  font-size: 19px;
  margin: 6px 0 0;
}

/* botões */
.pwide__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pwide__actions--full {
  display: grid;
  gap: 10px;
}
.pwide__btn {
  width: 100%;
  justify-content: center;
}
.pwide__divider {
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0 0;
}
.pwide__list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}
.pwide__list li {
  list-style: "✔  ";
  color: #cfe3ff;
  margin: 8px 0;
}
.pwide__foot {
  display: block;
  color: #9fb4c7;
  opacity: 0.85;
  margin-top: 10px;
  font-size: 12px;
}

.pwide--popular {
  outline: 2px solid rgba(198, 235, 42, 0.28);
  box-shadow: 0 20px 60px rgba(199, 234, 43, 0.2),
    0 18px 50px rgba(0, 0, 0, 0.42);
}

/* === GUARANTIA HERO === */
.guarantee-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(199, 234, 43, 0.28),
    rgba(26, 179, 230, 0.22)
  );
  border: 1px solid rgba(230, 251, 106, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px rgba(230, 251, 106, 0.12);
  overflow: hidden;
}
.gh__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(230, 251, 106, 0.22);
  border: 1px solid rgba(230, 251, 106, 0.55);
}
.gh__icon svg {
  width: 26px;
  height: 26px;
  fill: #def78a;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}
.gh__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh__title {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  color: #eaf4ff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.gh__text {
  font-size: 14px;
  color: #eaf4ff;
  font-weight: 700;
}

/* brilho */

.gh__note {
  margin: -2px 0 0;
  color: #b7cbe0;
  font-size: 12px;
}

/* comparativo */
.plansv2__compare {
  margin: 16px 0 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #102a3a, #0c2030);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.plansv2__bar {
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.plansv2__bar-mensal {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff8a8a, #ff5a5a);
}
.plansv2__bar-anual {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 67.7%;
  background: linear-gradient(90deg, #c7ea2b, #8ee85a);
}

/* premium */
.plansv2__premium {
  margin-top: 40px;
  text-align: center;
}
.pfull {
  background: linear-gradient(90deg, var(--lime), #e6fb6a);
  border: 1px solid rgb(255 255 255 / 62%);
  border-radius: 22px;
  padding: 40px 24px;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  box-shadow: 0 0 50px #e3f964a3;
}
.pfull__title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0;
  margin-top: 0;
  color: #0c1833;
  text-transform: uppercase;
}
.pfull__lead {
  color: #0c1833;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  border-bottom: 1px solid #0c1833;
  padding-bottom: 15px;
}
.pfull__text {
  color: #0c183385;
  letter-spacing: -0.4px;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
  max-width: 370px;
}
.pfull__list {
  margin: 0;
  text-align: left;
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  border: 1px solid #0c1833;
  background: #0c183345;
  padding: 15px 15px 15px 42px;
  border-radius: 16px;
}
.pfull__list li {
  list-style: "✔  ";
  margin: 8px 0;
}

/* responsivo */
@media (max-width: 1024px) {
  .plansv2__compare {
    grid-template-columns: 1fr;
  }
  .pfull {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .plansv2__head h2 {
    font-size: 26px;
  }
  .plansv2__coupon-chip {
    padding: 10px;
    border-radius: 20px;
    text-align: center;
  }
  .plansv2__table {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .plans-v2 {
    padding: 56px 0;
  }
  .plan-toggle {
    width: 100%;
    margin: 0 auto 24px;
  }
  .plan-toggle__btn {
    padding: 10px 12px;
    font-size: 14px;
  }
  .plan-toggle__badge {
    display: none;
  }
  .pwide__price {
    font-size: 36px;
  }
  .pfull__title {
    font-size: 24px;
  }
}

/* ================== 08: DEPOIMENTOS ================== */
.testi {
  background: #0b1f2b;
  padding: 72px 0;
  position: relative;
}
.testi__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr; /* centro maior */
  gap: 18px;
  align-items: stretch;
}

.tcard {
  background: linear-gradient(180deg, #102a3a, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  position: relative;
  transform: translateY(10px) scale(0.99);
  opacity: 0;
  transition: 0.45s ease transform, 0.45s ease opacity, 0.2s ease box-shadow;
}
.tcard--featured {
  transform: none;
}
.tcard:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
}
.tcard.is-in {
  opacity: 1;
  transform: none;
}

.tcard__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.tcard__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.tcard__name {
  display: block;
  line-height: 1.1;
}
.tcard__stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.star {
  width: 16px;
  height: 16px;
  fill: #e6fb6a;
  filter: drop-shadow(0 2px 8px rgba(199, 234, 43, 0.3));
}

.tcard__quote {
  margin: 0;
  position: relative;
  color: #cfe3ff;
}
.tcard__quote p {
  margin: 0;
}
.tcard__quote-mark {
  position: absolute;
  left: -6px;
  top: -8px;
  font-size: 48px;
  line-height: 1;
  color: rgba(230, 251, 106, 0.35);
  transform: translate(-4px, -6px);
}

/* destaque central maior */
.tcard--featured {
  padding: 22px;
}
.testi__grid .tcard--featured .tcard__avatar {
  width: 60px;
  height: 60px;
}
.testi__grid .tcard--featured .tcard__quote {
  font-size: 17px;
}

/* responsivo */
@media (max-width: 1024px) {
  .testi__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tcard--featured .tcard__quote {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .testi {
    padding: 56px 0;
  }
  .testi__title {
    font-size: 28px;
  }
}
/* ================== 09: RESULTADOS (antes/depois) ================== */
.results {
  position: relative;
  background: var(--grad);
  padding: 64px 0;
}
.results__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 28px;
}
.results__lead {
  color: var(--muted);
  margin: 0 0 18px;
}

/* Grade responsiva */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .results__grid {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  padding: 10px;
  transition: 0.25s transform, 0.25s box-shadow;
  margin: 0;
}
.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
}

.ba-caption {
  color: #cfe3ff;
  font-size: 13px;
  margin: 0 0 8px 4px;
  opacity: 0.9;
}

/* Wrapper do comparador */
.ba-wrap {
  position: relative;
  aspect-ratio: 4/5; /* adapta a maioria dos retratos */
  border-radius: 14px;
  overflow: hidden;
  background: #081823;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
} /* metade por padrão */

/* range custom invisível, mas acessível */
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 2;
}
.ba-range:focus {
  outline: none;
}

/* handle visual */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}
.ba-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  box-shadow: 0 0 0 6px rgba(199, 234, 43, 0.22);
}
.ba-arrows {
  position: absolute;
  top: calc(50% + 18px);
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  color: #cfe3ff;
  opacity: 0.85;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* LIGHTBOX */
.ba-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: grid;
  place-items: center;
  z-index: 60;
}
.ba-lg {
  position: relative;
  width: min(920px, 92vw);
  aspect-ratio: 16/9;
  background: #081823;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ba-lg-before,
.ba-lg-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-lg-after {
  clip-path: inset(0 0 0 50%);
}
.ba-lg-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 2;
}
.ba-lg-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
}
.ba-lg-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  box-shadow: 0 0 0 8px rgba(199, 234, 43, 0.22);
}
.ba-lg-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  color: #eaf4ff;
  font-weight: 700;
}
.ba-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.ba-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* ================== 10: FEATURES (zig-zag) ================== */
.features {
  padding: 72px 0;
  background: linear-gradient(180deg, #0f2a38, #0b1f2b);
}
.features__title {
  text-align: center;
  font-weight: 900;
  font-size: 30px;
  margin: 0 0 40px;
  color: #fff;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.frow--rev {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.frow--rev .frow__txt {
  direction: ltr;
}

.frow__img {
  text-align: center;
  display: flex;
  justify-content: flex-end;
}
.frow__img img {
  max-width: 230px;
  width: 100%;
  border-radius: 20px;
}

.frow__txt {
  color: #eaf4ff;
}
.frow__h {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}
.frow__p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #cfe3ff;
}

.features__cta {
  text-align: center;
  margin-top: 30px;
}
.features__cta .btn {
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0e1d12;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(199, 234, 43, 0.25);
}

/* Responsivo */
@media (max-width: 900px) {
  .frow,
  .frow--rev {
    grid-template-columns: 1fr;
    direction: unset;
  }
  .frow__img img {
    max-width: 200px;
    margin: 0 auto;
  }
  .frow__txt {
    text-align: center;
  }
}

/* ================== 10.1: ESTRATÉGIA / BENEFÍCIOS ================== */
.strategy {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #0e2431, #0b1f2b); /* coeso com o tema */
  position: relative;
  overflow: hidden;
}
.strategy::before {
  /* glow suave, bem discreto */
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(
    60% 60% at 50% 0%,
    rgba(198, 235, 42, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.strategy .container {
  position: relative;
  z-index: 1;
}

.strategy__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}
.strategy__title {
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(28px, 4.2vw, 44px);
  color: #dffb79; /* lime da identidade, um pouco mais suave */
}
.strategy__lead {
  color: #cfe3ff;
  font-size: 16px;
  margin: 0 0 8px;
}
.strategy__sub {
  color: #a8bfd2;
  font-size: 15px;
  margin: 0;
}

/* grid de benefícios */
.sfeat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
  list-style: none;
}
.sfeat__item {
  background: linear-gradient(180deg, #0f2a38, #0c2230);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.sfeat__item:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 235, 42, 0.28);
  box-shadow: 0 26px 60px rgba(199, 234, 43, 0.2),
    0 18px 46px rgba(0, 0, 0, 0.42);
}

.sfeat__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(198, 235, 42, 0.15);
  border: 1px solid rgba(198, 235, 42, 0.35);
  box-shadow: inset 0 0 0 2px rgba(198, 235, 42, 0.12);
}
.sfeat__icon svg {
  width: 22px;
  height: 22px;
  fill: #e6fb6a;
}

.sfeat__title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eaf4ff;
  margin: 6px 0 6px;
}
.sfeat__text {
  color: #bcd3e8;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 36ch;
}

/* responsivo */
@media (max-width: 1024px) {
  .sfeat {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .strategy {
    padding: 48px 0 36px;
  }
  .sfeat {
    grid-template-columns: 1fr;
  }
  .sfeat__item {
    padding: 16px 14px;
  }
}

/* ================== 11: SOBRE NÓS ================== */
.about {
  padding: 72px 0;
  background: #0b1f2b;
  color: #cfe3ff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 40px;
}
.about__visual {
  position: relative;
  text-align: center;
}
.about__img {
  width: 100%;
  /* max-width: 280px; */
  border-radius: 50%;
  border: 4px solid #c7ea2b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.about__badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0b1f2b;
  font-weight: 900;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(199, 234, 43, 0.25);
}
.about__title {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.about__subtitle {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #e6fb6a;
}
.about__cta {
  margin-top: 28px;
}
.about__cta .btn {
  padding: 14px 30px;
  font-weight: 900;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__visual {
    margin-bottom: 28px;
  }
  .about__badge {
    bottom: -10px;
    font-size: 12px;
    padding: 5px 12px;
  }
}
/* ================== 12: FAQ ================== */
.faq {
  padding: 72px 0;
  background: #0b1f2b;
}
.faq__title {
  text-align: center;
  margin: 0 0 36px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #102a3a;
}
.faq__q {
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  color: #e6fb6a;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq__icon {
  transition: 0.3s transform;
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 18px 16px;
  color: #cfe3ff;
  line-height: 1.5;
  animation: 0.3s fadeIn ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.faq__cta {
  text-align: center;
  margin-top: 30px;
}
.faq__cta .btn {
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c7ea2b, #e6fb6a);
  color: #0b1f2b;
  font-weight: 900;
}
/* ================== 13: CONTATO ================== */
.contact {
  padding: 72px 0;
  background: linear-gradient(180deg, #0b1f2b, #092431);
  text-align: center;
}
.contact__title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}
.contact__subtitle {
  font-size: 16px;
  color: #cfe3ff;
  margin: 0 0 28px;
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: 0.25s transform;
}
.btn--whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero__grid {
    flex-direction: column;
  }

  .plansv2__head h2 {
    text-align: center;
  }

  .plansv2__coupon-chip {
    padding: 10px;
    border-radius: 20px;
    text-align: center;
  }

  .hero__copy.u-left {
    text-align: center;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero {
    background: var(--grad);
    padding-top: 60px;
  }
  .offer__copy {
    text-align: center;
  }
  .plansv2__table {
    flex-direction: column;
  }
  .plans-v2 .btn--pill {
    width: -webkit-fill-available;
  }
}
