/* ============================================
   VARIÁVEIS
   ============================================ */
:root {
  /* Cores principais */
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #d1fae5;
  --emerald-soft: #ecfdf5;
  --navy: #0f2044;
  --navy-mid: #1e3a5f;
  --yellow: #f59e0b;
  --yellow-light: #fef3c7;
  --yellow-soft: #fffbeb;

  /* Neutros */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --ink: #111827;

  /* Utilitários */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(15,32,68,0.05), 0 1px 3px rgba(15,32,68,0.04);
  --shadow-sm: 0 2px 6px rgba(15,32,68,0.05), 0 6px 16px rgba(15,32,68,0.05);
  --shadow-md: 0 6px 16px rgba(15,32,68,0.06), 0 16px 32px rgba(15,32,68,0.07);
  --shadow-lg: 0 12px 28px rgba(15,32,68,0.10), 0 24px 48px rgba(15,32,68,0.10);
  --shadow-green: 0 8px 18px rgba(5,150,105,0.28), 0 2px 6px rgba(5,150,105,0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET E BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: #dfe9f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; overflow-wrap: anywhere; letter-spacing: -0.02em; }

/* ============================================
   ÍCONES SVG (ilustrações)
   ============================================ */
.ico {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
  overflow: visible;
}

/* ícones "preenchidos" (estrela, play, etc.) usam o próprio fill via path */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--yellow);
}
.stars .ico {
  width: 1rem;
  height: 1rem;
  stroke: none;
}

/* ============================================
   SHELL / CONTAINER
   ============================================ */
.page-shell {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 80px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,32,68,0.22);
}

@media (min-width: 440px) {
  .page-shell {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 440px) {
  body { background: var(--white); }
  .page-shell { box-shadow: none; }
}

/* ============================================
   BARRA TOPO
   ============================================ */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 9px 16px;
  background: linear-gradient(100deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.25;
  text-align: center;
}

.top-bar__icon {
  color: var(--yellow);
  width: 14px;
  height: 14px;
  stroke: none;
  flex-shrink: 0;
  transform-origin: center;
  animation: star-twinkle 5s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 82%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(245,158,11,0));
  }
  86% {
    transform: scale(1.35) rotate(-12deg);
    filter: drop-shadow(0 0 7px rgba(245,158,11,0.9));
  }
  90% {
    transform: scale(0.95) rotate(8deg);
  }
  94% {
    transform: scale(1.2) rotate(-4deg);
    filter: drop-shadow(0 0 5px rgba(245,158,11,0.7));
  }
  98% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(245,158,11,0));
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar__icon { animation: none; }
}

.top-bar__text strong,
.top-bar b { color: var(--yellow); }

/* ============================================
   BADGE DE CONFIANÇA
   ============================================ */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin: 12px auto 0;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-light);
  box-shadow: var(--shadow-xs);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--emerald-dark);
}

.trust-badge__icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  flex-shrink: 0;
}

.trust-badge__icon .ico { width: 12px; height: 12px; stroke-width: 2.6; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 16px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(120% 60% at 50% 0%, var(--emerald-soft) 0%, rgba(236,253,245,0) 60%),
    linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
}

.hero__headline {
  font-size: clamp(1.7rem, 8vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-top: 6px;
  isolation: isolate;
}

.hero__highlight {
  position: relative;
  color: var(--emerald);
  font-style: normal;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-image: linear-gradient(90deg, rgba(16,185,129,0.28), rgba(52,211,153,0.36));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.22em;
  padding-bottom: 0.02em;
}

.hero__desc {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 340px;
}

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

/* Benefícios rápidos */
/* Cronômetro de oferta */
.countdown {
  position: relative;
  width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-md);
  text-align: center;
  overflow: hidden;
}

/* fina linha de alerta no topo */
.countdown::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #ef4444);
  background-size: 200% 100%;
  animation: cd-stripe 2.5s linear infinite;
}

@keyframes cd-stripe {
  from { background-position: 0 0; }
  to   { background-position: 200% 0; }
}

.countdown__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.countdown__label .ico {
  width: 14px;
  height: 14px;
  animation: cd-shake 1.4s ease-in-out infinite;
}

@keyframes cd-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(5deg); }
}

.countdown__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 58px;
  padding: 7px 4px 5px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.countdown__unit strong {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown__unit small {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* segundos com leve destaque vermelho */
.countdown__unit--seconds strong { color: #fca5a5; }

.countdown__unit--seconds.tick strong {
  animation: cd-pop 0.5s var(--ease-out);
}

@keyframes cd-pop {
  0%   { transform: scale(1.14); color: #fff; }
  100% { transform: scale(1); }
}

.countdown__colon {
  align-self: flex-start;
  margin-top: 11px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  color: #ef4444;
  animation: cd-blink 1s steps(1) infinite;
}

@keyframes cd-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

.countdown__warning {
  display: block;
  margin-top: 9px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #94a3b8;
}

/* reta final (< 2 min): números ganham brilho vermelho */
.countdown.is-ending .countdown__unit strong {
  color: #fff;
  text-shadow: 0 0 14px rgba(239,68,68,0.8);
}

.countdown.is-expired .countdown__unit strong {
  color: #fca5a5;
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .countdown::before,
  .countdown__label .ico,
  .countdown__colon,
  .countdown__unit--seconds.tick strong { animation: none; }
}

/* ============================================
   PHONE MOCKUP + VSL
   ============================================ */
.phone-mockup {
  position: relative;
  width: min(330px, 92%);
  aspect-ratio: 9 / 17;
  margin: 18px auto 0;
  padding: 12px;
  border-radius: 46px;
  background:
    linear-gradient(150deg, #2a3a55 0%, #0f2044 45%, #0a1730 100%);
  box-shadow:
    0 1px 0 2px rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(0,0,0,0.4),
    var(--shadow-lg),
    0 40px 60px -20px rgba(15,32,68,0.55);
}

/* brilho lateral metálico da moldura */
.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 44px;
  background: linear-gradient(110deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,0.10));
  pointer-events: none;
  z-index: 3;
}

.phone-mockup__seal {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(180deg, #10b981, #059669);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-green);
  z-index: 5;
}

.phone-mockup__seal .ico { width: 11px; height: 11px; stroke: none; }

/* botões físicos laterais */
.phone-mockup__btn {
  position: absolute;
  width: 3px;
  border-radius: 4px;
  background: #0a1428;
  box-shadow: -1px 0 1px rgba(255,255,255,0.05) inset;
  z-index: 1;
}
.phone-mockup__btn--power   { right: -3px; top: 130px; height: 54px; }
.phone-mockup__btn--vol-up  { left: -3px; top: 104px; height: 34px; }
.phone-mockup__btn--vol-down{ left: -3px; top: 146px; height: 34px; }

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: #05060a;
  overflow: hidden;
  z-index: 2;
}

/* notch / ilha dinâmica */
.phone-mockup__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 88px;
  height: 22px;
  border-radius: var(--radius-full);
  background: #05060a;
  z-index: 4;
}

.phone-mockup__speaker {
  width: 34px;
  height: 4px;
  border-radius: var(--radius-full);
  background: #1b2333;
}

.phone-mockup__camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2b3650, #070b14 70%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* área do vídeo / VSL */
.vsl-player {
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  z-index: 1;
}

.vsl-player iframe,
.vsl-player video,
.vsl-player > div {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  object-fit: cover;
}

/* Wistia: preenche a tela do celular */
.vsl-player wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 0 !important;
  filter: none !important;
}

/* escudo invisível: cobre toda a interface do Wistia (logo, cc, barra de controle) */
.vsl-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}

/* botão próprio de ativar som, clean, centralizado na VSL */
.vsl-sound {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: calc(100% - 28px);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  background: rgba(15,32,68,0.6);
  color: #fff;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), background 200ms;
}

.vsl-sound .ico { width: 17px; height: 17px; flex-shrink: 0; }

.vsl-sound:hover { background: rgba(15,32,68,0.75); }

.vsl-sound.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
}

/* placeholder enquanto a VSL não é colada */
.vsl-placeholder {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 20px;
  color: var(--white);
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(16,185,129,0.30), rgba(16,185,129,0) 60%),
    linear-gradient(165deg, #13243f, #0a1424 70%);
}

.vsl-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 26%, rgba(255,255,255,0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 72%, rgba(255,255,255,0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 82%, rgba(255,255,255,0.10) 0 2px, transparent 3px);
  pointer-events: none;
}

.vsl-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: vsl-pulse 2.4s var(--ease-out) infinite;
}

.vsl-play__icon {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  color: var(--emerald);
  stroke: none;
}

.vsl-play__triangle {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--emerald);
}

@keyframes vsl-pulse {
  0%   { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(16,185,129,0.5); }
  70%  { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 22px rgba(16,185,129,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(16,185,129,0); }
}

.vsl-placeholder__title {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.vsl-placeholder__sub {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   LIVE OVERLAY (estilo Instagram/Shopee)
   ============================================ */
.live-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* topo: tag AO VIVO + espectadores */
.live-top {
  position: absolute;
  top: 40px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 7px;
  background: linear-gradient(180deg, #f43f5e, #e11d48);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(225,29,72,0.4);
}

.live-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: live-blink 1.4s ease-in-out infinite;
}

.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(8,12,22,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
}

.live-viewers__icon { width: 13px; height: 13px; opacity: 0.9; }

.live-viewers strong {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* corações subindo */
.live-hearts {
  position: absolute;
  right: 8px;
  bottom: 64px;
  width: 40px;
  height: 220px;
}

.live-heart {
  position: absolute;
  bottom: 0;
  right: 6px;
  opacity: 0;
  animation: heart-rise 2.8s ease-in forwards;
}

.live-heart .ico { width: 20px; height: 20px; stroke: none; }

@keyframes heart-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0.6); }
  12%  { opacity: 0.95; }
  100% { opacity: 0; transform: translateY(-200px) translateX(var(--drift, -12px)) scale(1.15); }
}

/* lista de comentários */
.live-comments {
  position: absolute;
  left: 12px;
  right: 50px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  max-height: 200px;
  text-align: left;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%);
          mask-image: linear-gradient(180deg, transparent, #000 26%);
}

.live-comment {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: comment-in 0.45s var(--ease-out) both;
}

.live-comment__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: #1b2333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.live-comment__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-comment__bubble {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 14px;
  border-top-left-radius: 5px;
  background: rgba(10,16,28,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

.live-comment__name {
  display: block;
  font-size: 0.62rem;
  font-weight: 900;
  color: #7fe6b8;
  letter-spacing: 0.01em;
  margin-bottom: 1px;
}

.live-comment__text {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: #f1f5f9;
}

@keyframes comment-in {
  0%   { opacity: 0; transform: translateY(12px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .live-tag::before,
  .live-comment,
  .live-heart { animation: none; }
  .live-heart { display: none; }
}

/* CTA hero */
.hero .btn-primary {
  margin-top: 22px;
  width: 100%;
  max-width: 340px;
}

.hero__trust-line {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.68rem;
  font-weight: 800;
}

.hero__trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero__trust-line .ico { width: 13px; height: 13px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), filter 200ms var(--ease-out);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .ico { width: 17px; height: 17px; margin-right: 7px; }

.btn-primary {
  background: linear-gradient(180deg, #10b981, #059669);
  color: var(--white);
  border-color: rgba(4,120,87,0.4);
  box-shadow: var(--shadow-green);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 45%);
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(5,150,105,0.34), 0 3px 8px rgba(5,150,105,0.22);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald-dark);
}

.btn-wide { width: 100%; }

.btn-large {
  min-height: 58px;
  font-size: 1rem;
}

/* ============================================
   SEÇÕES / LAYOUT BASE
   ============================================ */
section, .urgency-box, .objections {
  padding: 40px 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 7.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.section-heading p {
  margin-top: 8px;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

/* ============================================
   PROBLEMAS
   ============================================ */
.problems {
  background: var(--gray-50);
}

.problems__list {
  display: grid;
  gap: 14px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.problem-card__icon .ico { width: 22px; height: 22px; }

.problem-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.problem-card__desc {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.problem-card .divider { margin-top: 14px; }

/* ============================================
   PONTE SOLUÇÃO
   ============================================ */
.solution-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--emerald-soft), #e6faf0);
  border-top: 1px solid var(--emerald-light);
  border-bottom: 1px solid var(--emerald-light);
  padding: 16px 20px;
  text-align: center;
  color: var(--emerald-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.solution-bridge .ico { width: 18px; height: 18px; color: var(--emerald); }

/* ============================================
   TRANSFORMAÇÃO / BENEFÍCIOS
   ============================================ */
.transformation {
  background: var(--white);
}

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

.benefits-list__item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.benefits-list__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.benefits-list__check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #10b981, var(--emerald));
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 10px rgba(5,150,105,0.28);
}

.benefits-list__check .ico { width: 15px; height: 15px; stroke-width: 2.6; }

.benefits-list__item strong {
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.benefits-list__item p {
  margin-top: 2px;
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.how-it-works {
  background: var(--gray-50);
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d1fae5, var(--emerald-soft));
  border: 1px solid var(--emerald-light);
  margin: 0 auto 12px;
}

.step-card__icon { font-size: 1.7rem; color: var(--emerald-dark); }
.step-card__icon.ico { width: 28px; height: 28px; stroke-width: 1.7; }

.step-card__label {
  display: block;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card__desc {
  color: var(--gray-600);
  font-size: 0.87rem;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
  background: var(--white);
}

.testimonials__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-light);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--emerald-dark);
}

.testimonials__list {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-card__stars.stars .ico { width: 16px; height: 16px; }

.testimonial-card__text {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-card .divider { margin-bottom: 14px; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #10b981, var(--emerald));
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(5,150,105,0.28);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__author strong {
  font-size: 0.88rem;
  color: var(--navy);
  display: block;
}

.testimonial-card__info {
  color: var(--emerald-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   CARROSSEL AUTOMÁTICO (marquee infinito)
   ============================================ */
.carousel {
  position: relative;
  margin-top: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.carousel__track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 0;
  animation: carousel-scroll 32s linear infinite;
}

.carousel__slide {
  flex: 0 0 auto;
  width: 240px;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-200);
}

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

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 5px)); }
}

/* segundo carrossel: sentido inverso e margem inferior */
.carousel--reverse {
  margin-bottom: 16px;
}

.carousel--reverse .carousel__track {
  animation-name: carousel-scroll-reverse;
}

@keyframes carousel-scroll-reverse {
  from { transform: translateX(calc(-50% - 5px)); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { animation: none; }
}

/* ============================================
   TEMAS
   ============================================ */
.themes {
  background: var(--gray-50);
}

.themes__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.theme-preview {
  min-height: 120px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 240ms var(--ease-out);
}

.theme-preview:hover { transform: translateY(-3px) scale(1.01); }

.theme-preview span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(2px);
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--ink);
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.theme-preview .ico { width: 15px; height: 15px; }

.theme-preview--rainbow {
  background: linear-gradient(160deg, #ff6b6b, #ffc247 48%, #56c5f2);
}

.theme-preview--safari {
  background: linear-gradient(160deg, #f59e0b, #fbbf24 40%, #78350f);
}

.themes__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 16px;
}

.theme-badge {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
  transition: transform 180ms var(--ease-out);
}

.theme-badge:hover { transform: translateY(-2px); }

.theme-badge--pink   { background: #fce7f3; color: #be185d; }
.theme-badge--green  { background: var(--emerald-soft); color: var(--emerald-dark); }
.theme-badge--blue   { background: #eff6ff; color: #1d4ed8; }
.theme-badge--purple { background: #f5f3ff; color: #6d28d9; }
.theme-badge--yellow { background: var(--yellow-soft); color: #92400e; }
.theme-badge--orange { background: #fff7ed; color: #c2410c; }
.theme-badge--teal   { background: #f0fdfa; color: #0f766e; }

.themes__reforce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: var(--emerald-dark);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.themes__reforce .ico { width: 16px; height: 16px; stroke-width: 2.4; }

/* ============================================
   ENTREGÁVEIS
   ============================================ */
.deliverables {
  background: var(--white);
}

.deliverables__list {
  display: grid;
  gap: 0;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.deliverable-item__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.deliverable-item__icon .ico { width: 22px; height: 22px; }

.deliverable-item__content {
  flex: 1;
}

.deliverable-item__content strong {
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}

.deliverable-item__content p {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 1px;
}

.deliverable-item__tag {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag--green  { background: var(--emerald-soft); color: var(--emerald-dark); border: 1px solid var(--emerald-light); }
.tag--bonus  { background: var(--yellow-soft); color: #92400e; border: 1px solid #fde68a; }

/* caixa de itens inclusos */
.receive-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0 0 14px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  overflow: hidden;
}

.receive-box__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--emerald-soft);
  border-bottom: 1px solid var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.receive-box__head .ico { width: 19px; height: 19px; color: var(--emerald); }

.receive-grid {
  list-style: none;
  margin: 0;
  padding: 14px 16px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 12px;
}

.receive-grid li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.receive-grid .ico {
  width: 15px;
  height: 15px;
  stroke-width: 2.8;
  color: var(--emerald);
  flex-shrink: 0;
}

/* caixa de bônus */
.bonus-box {
  margin-top: 14px;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdf5, var(--yellow-soft));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.bonus-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(100deg, #f59e0b, #d97706);
  color: #fff;
}

.bonus-box__title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
}

.bonus-box__title .ico { width: 17px; height: 17px; }

.bonus-box__only {
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.bonus-list {
  list-style: none;
  margin: 0;
  padding: 6px 14px;
  display: grid;
}

.bonus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #ecd9a0;
}

.bonus-row:last-child { border-bottom: none; }

.bonus-row__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.bonus-row__name .ico { width: 17px; height: 17px; color: #b45309; flex-shrink: 0; }

.bonus-row__val {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

.bonus-row__val s { font-size: 0.72rem; font-weight: 700; color: var(--gray-400); }

.bonus-row__val b {
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ---- ARTE DO TOTAL DE BÔNUS (efeito cupom recortado) ---- */
.bonus-art {
  position: relative;
  overflow: visible;
  margin: 0;
  padding: 18px 16px 14px;
  text-align: center;
  background:
    radial-gradient(130% 80% at 50% -10%, rgba(16,185,129,0.28), rgba(16,185,129,0) 60%),
    linear-gradient(165deg, var(--navy-mid), var(--navy));
  box-shadow: inset 0 2px 6px rgba(15,32,68,0.25);
}

/* serrilha pontilhada do recorte */
.bonus-art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 0;
  border-top: 2px dashed rgba(255,255,255,0.45);
}

/* entalhes (furos) nas laterais, na linha do recorte */
.bonus-art__notch {
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow-soft);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.12);
  z-index: 2;
}
.bonus-art__notch--left { left: -10px; }
.bonus-art__notch--right { right: -10px; }

.bonus-art > * { position: relative; z-index: 1; }

/* brilho diagonal que cruza a arte */
.bonus-art__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-18deg);
  animation: bonus-shine 4.6s ease-in-out infinite;
}

@keyframes bonus-shine {
  0%, 62% { left: -60%; }
  100% { left: 130%; }
}

.bonus-art__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cfe3ff;
}
.bonus-art__label .ico { width: 14px; height: 14px; color: var(--yellow); stroke: none; }

.bonus-art__old {
  display: block;
  margin-top: 3px;
  font-family: 'Fredoka', 'Manrope', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  color: #e2ecfb;
  text-decoration: line-through;
  text-decoration-color: #f87171;
  text-decoration-thickness: 3px;
}

.bonus-art__free {
  display: block;
  margin: 2px 0 3px;
  font-family: 'Fredoka', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fde68a 0%, var(--yellow) 60%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(245,158,11,0.35));
}

.bonus-art__note {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: #a9c4e8;
}
.bonus-art__note strong {
  color: var(--white);
  font-weight: 900;
}

/* ============================================
   URGÊNCIA
   ============================================ */
.urgency-box {
  background: linear-gradient(155deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  margin: 0 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.urgency-box__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.urgency-box__title .ico { width: 20px; height: 20px; }

.urgency-box__text {
  color: #cbd5e1;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.urgency-box__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-box__price span {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 700;
}

.urgency-box__price strong {
  color: #34d399;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

/* ============================================
   PLANOS / PREÇO
   ============================================ */
.pricing {
  background: var(--gray-50);
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  background: var(--white);
}

/* ---- PLANO PREMIUM (hipervalorizado) ---- */
.plan-card--primary {
  border: 2.5px solid var(--emerald);
  box-shadow: 0 22px 50px rgba(5,150,105,0.26), 0 6px 16px rgba(5,150,105,0.14);
  position: relative;
  overflow: hidden;
  transform: scale(1.012);
}

.plan-card--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(5,150,105,0.10), transparent 70%);
  pointer-events: none;
}

.plan-card__ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(100deg, var(--emerald-dark), var(--emerald));
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 9px;
  margin: -20px -20px 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(5,150,105,0.28);
}

.plan-card__ribbon .ico { width: 14px; height: 14px; stroke: none; }

.plan-card__best {
  position: absolute;
  top: 44px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--yellow);
  color: #5a3a00;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 40px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.plan-card__name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-card__tag {
  background: linear-gradient(100deg, #f59e0b, #f97316);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.plan-card__desc {
  color: var(--gray-600);
  font-size: 0.83rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.plan-card__old-price {
  color: var(--gray-400);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.plan-card__old-price::first-line { text-decoration: none; }

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.plan-card__name,
.plan-card__desc,
.plan-card__old-price,
.plan-card__price,
.plan-card__perday,
.plan-card__features,
.plan-card__assurance,
.plan-card--primary .btn {
  position: relative;
  z-index: 1;
}

.plan-card__price strong {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-card__price small {
  color: var(--gray-600);
  font-size: 0.78rem;
}

.plan-card__perday {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.plan-card__perday .ico { width: 14px; height: 14px; stroke: none; }

.plan-card__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 2px;
}

.plan-card__features li .ico {
  width: 17px;
  height: 17px;
  stroke-width: 2.8;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card__features--full {
  gap: 6px;
  margin-bottom: 14px;
}
.plan-card__features--full li {
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.3;
}
.plan-card__features--full li .ico {
  width: 15px;
  height: 15px;
}
.plan-card__features--full li strong { color: var(--navy); font-weight: 800; }

.plan-card__bonus {
  background: var(--yellow-light);
  color: #92600a;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-left: auto;
}

.plan-card__cta {
  animation: cta-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(5,150,105,0.30), 0 3px 8px rgba(5,150,105,0.20); }
  50% { box-shadow: 0 14px 30px rgba(5,150,105,0.46), 0 4px 12px rgba(5,150,105,0.30); transform: translateY(-1px); }
}

.plan-card__assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 0.76rem;
  font-weight: 700;
}
.plan-card__assurance .ico { width: 15px; height: 15px; color: var(--emerald); }

/* ---- DIVISOR ENTRE PLANOS ---- */
.plan-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 4px 18px;
  color: var(--gray-400);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: lowercase;
}
.plan-divider::before,
.plan-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.plan-divider--upgrade {
  text-transform: none;
  color: var(--emerald-dark);
  font-size: 0.8rem;
  font-weight: 800;
}
.plan-divider--upgrade span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plan-divider--upgrade .ico {
  width: 16px;
  height: 16px;
  color: var(--emerald);
}
.plan-divider--upgrade::before,
.plan-divider--upgrade::after {
  background: linear-gradient(90deg, transparent, var(--emerald-light));
}
.plan-divider--upgrade::after {
  background: linear-gradient(90deg, var(--emerald-light), transparent);
}

/* ---- PLANO BÁSICO (proposital sem vida) ---- */
.plan-card--secondary {
  border: 1px solid var(--gray-200);
  box-shadow: none;
  background: var(--gray-50);
  opacity: 0.92;
  filter: saturate(0.55);
}

.plan-card__name--muted {
  color: var(--gray-600);
  font-weight: 800;
  font-size: 0.95rem;
}

.plan-card__price--muted strong {
  color: var(--gray-600);
  font-size: 2.2rem;
}
.plan-card__price--muted small { color: var(--gray-400); }

.plan-card__features--limited li {
  color: var(--gray-600);
  font-size: 0.85rem;
}
.plan-card__features--limited li .ico {
  color: var(--gray-400);
  stroke-width: 2.4;
}
.plan-card__features--limited li.is-off {
  color: var(--gray-400);
  text-decoration: line-through;
  text-decoration-color: var(--gray-200);
}
.plan-card__features--limited li.is-off .ico {
  color: #d1495b;
  opacity: 0.7;
}

/* ============================================
   POP-UP DE UPSELL
   ============================================ */
.upsell {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.upsell[hidden] { display: none; }

.upsell__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,32,68,0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: upsell-fade 220ms var(--ease-out);
}

.upsell__dialog {
  position: relative;
  width: 100%;
  max-width: 366px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15,32,68,0.45);
  animation: upsell-pop 280ms var(--ease-out);
}

@keyframes upsell-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes upsell-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.upsell__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms var(--ease-out);
  z-index: 3;
}
.upsell__close:hover { background: rgba(255,255,255,0.32); }
.upsell__close .ico { width: 16px; height: 16px; stroke-width: 2.6; }

/* ---- Header navy ---- */
.upsell__head {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  text-align: center;
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(16,185,129,0.32), rgba(16,185,129,0) 62%),
    linear-gradient(165deg, var(--navy-mid), var(--navy));
}

.upsell__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(100deg, #f43f5e, #e11d48);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  margin-bottom: 11px;
  box-shadow: 0 6px 16px rgba(225,29,72,0.4);
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.upsell__badge .ico { width: 13px; height: 13px; stroke: none; }

.upsell__title {
  font-size: 1.24rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.upsell__title em {
  color: #5eead4;
  font-style: normal;
}

/* ---- Corpo branco ---- */
.upsell__body {
  padding: 18px 20px 20px;
  overflow-y: auto;
}

.upsell__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}
.upsell__price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.upsell__price-strike {
  color: var(--gray-400);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: #f87171;
}
.upsell__price-now {
  font-family: 'Fredoka', 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.02em;
}
.upsell__price-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.upsell__price-tag .ico { width: 12px; height: 12px; stroke: none; }

.upsell__lead {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 14px;
  text-align: center;
}
.upsell__lead strong { color: var(--ink); }

.upsell__features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 11px;
}
.upsell__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.3;
}
.upsell__features li strong { color: var(--navy); font-weight: 800; }
.upsell__features li .ico {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--emerald-soft);
  stroke-width: 3;
  color: var(--emerald);
  flex-shrink: 0;
}

.upsell__cta {
  animation: cta-pulse 2.2s ease-in-out infinite;
}

.btn-textlink {
  display: block;
  width: 100%;
  margin-top: 11px;
  padding: 6px;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  line-height: 1.4;
}
.btn-textlink:hover { color: var(--gray-600); }

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gray-400);
  color: var(--ink);
}

/* ============================================
   GARANTIA
   ============================================ */
.guarantee {
  background: var(--white);
  text-align: center;
}

.guarantee__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  color: var(--emerald);
  margin: 0 auto 20px;
  box-shadow: 0 10px 28px rgba(5,150,105,0.18), inset 0 0 0 1px var(--emerald-light);
}

.guarantee__icon .ico { width: 40px; height: 40px; stroke-width: 1.8; }

.guarantee__title {
  font-size: clamp(1.5rem, 7vw, 1.9rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.guarantee__text {
  color: var(--gray-600);
  font-size: 0.92rem;
  max-width: 340px;
  margin: 0 auto 10px;
}

.guarantee__text strong {
  color: var(--navy);
  font-weight: 900;
}

.guarantee__text strong:first-of-type {
  text-decoration: underline;
  text-decoration-color: var(--emerald);
  text-underline-offset: 3px;
}

/* ============================================
   OBJEÇÕES
   ============================================ */
.objections {
  background: linear-gradient(165deg, var(--navy-mid), var(--navy));
  text-align: center;
}

.objections__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-soft);
  color: var(--emerald-dark);
  border: 1px solid var(--emerald-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.objections__badge .ico { width: 15px; height: 15px; }

.objections__title {
  font-size: clamp(1.4rem, 7vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.objections__text {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.objections__highlight { color: var(--yellow); font-weight: 800; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--gray-50);
}

.faq__list {
  display: grid;
  gap: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.faq-item.is-open {
  border-color: var(--emerald-light);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 160ms var(--ease-out);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  flex-shrink: 0;
}

.faq-item__question > span { flex: 1; }

.faq-item__chevron {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--emerald);
  flex-shrink: 0;
  transition: transform 240ms var(--ease-out);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding: 0 18px 16px;
}

.faq-item__answer p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-item.is-open .faq-item__answer { display: block; }

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta {
  background: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.final-cta__text {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.final-cta__headline {
  font-size: clamp(1.7rem, 8vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}

.final-cta__headline em {
  color: var(--emerald);
  font-style: normal;
}

.final-cta__sub {
  margin-top: 10px;
  color: var(--gray-400);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ============================================
   RODAPÉ
   ============================================ */
.footer {
  background: var(--gray-100);
  padding: 20px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.footer p {
  color: var(--gray-400);
  font-size: 0.68rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

/* ============================================
   BARRA FIXA DE COMPRA
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  align-items: center;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 11px 16px 13px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -10px 30px rgba(15,32,68,0.12);
}

.sticky-bar__info {
  display: flex;
  flex-direction: column;
}

.sticky-bar__info span {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gray-400);
  text-transform: uppercase;
}

.sticky-bar__info strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--emerald-dark);
  line-height: 1;
}

.sticky-bar .btn {
  min-height: 46px;
  font-size: 0.85rem;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover,
  .problem-card:hover,
  .step-card:hover,
  .testimonial-card:hover,
  .benefits-list__item:hover,
  .gallery__item:hover,
  .theme-preview:hover,
  .theme-badge:hover { transform: none; }
}
