/* =========================================================
   PROTEÇÃO ANTI-CÓPIA (Tier 1)
   Bloqueia seleção em áreas críticas. FAQ e footer livres
   pra usuária copiar contato/dúvidas. Bloqueia drag de
   imagens, SVGs e animações Lottie.
   ========================================================= */
.hero h1, .hero .subhead, .hero .delivery-line,
.urgency-badge, .top-urgency,
.section-title, .section-subhead,
.tag, .badge,
.urgency-banner, .urgency-title, .urgency-sub,
.emotional-title, .emotional-sub, .emotional-tag, .emotional-bullet,
.result-card h2, .result-card .result-sub, .result-eyebrow,
.result-stat-num, .result-stat-label,
.list-check li, .list-x li,
.ba-card h3, .ba-tag,
.benefit-card, .for-whom-card,
.card-bonus h3, .card-bonus p, .bonus-value-row, .bonus-total,
.card-product h3, .card-product .kit-sub, .kit-footer-text,
.plan-title, .plan-old-price, .plan-price, .plan-installments,
.plan-savings, .plan-warning, .plan-urgency, .plan-guarantee,
.plan-badge-top, .plan-badge-seal, .price-card,
.guarantee-content h2, .guarantee-content p, .guarantee-note,
.testimonial-text, .testimonial-name, .testimonial-meta,
.step-card h3, .step-card p,
.cta {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Áreas selecionáveis (usuária precisa copiar): FAQ + footer */
.faq-item summary,
.faq-item p,
.footer,
.footer * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Bloqueia arrastar imagens/animações */
img, lottie-player, svg {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* =========================================================
   DESIGN TOKENS — edite estas variáveis pra mudar o visual
   ========================================================= */
:root {
  /* CORES PRINCIPAIS */
  --color-bg:               #fffbf2;
  --color-bg-soft:          #fff1dc;

  --color-text:             #1a1a1a;
  --color-text-soft:        #4a4a4a;
  --color-text-mute:        #7a7a7a;
  --color-text-light:       #ffffff;

  --color-outline:          #1a1a1a;
  --color-border-soft:      #ecdcc0;

  /* ACENTOS */
  --color-accent:           #2d7dec;      /* azul (sublinhados, badges secundários) */
  --color-accent-hover:     #1e5fb4;
  --color-accent-soft:      #dceaf7;

  --color-brown:            #a0532b;
  --color-brown-soft:       #f7e6d8;

  --color-yellow:           #fcb933;
  --color-yellow-soft:      #fff4d6;

  --color-success:          #41b883;
  --color-success-strong:   #1eaa5c;       /* verde mais vibrante (CTA principal) */
  --color-success-hover:    #178b48;
  --color-success-soft:     #dff4e8;

  --color-danger:           #ef5350;
  --color-danger-strong:    #e63946;
  --color-danger-soft:      #fde0db;

  /* CARDS / PLACEHOLDERS */
  --color-card-bg:          #ffffff;
  --color-placeholder-bg:   #f4ece0;
  --color-placeholder-text: #8a7a60;

  /* TIPOGRAFIA */
  --font-display:  'Fredoka', system-ui, -apple-system, sans-serif;
  --font-body:     'Nunito', system-ui, -apple-system, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  4rem;

  --space-xs:  0.5rem;
  --space-sm:  0.875rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4.5rem;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --outline-thin:    2px solid var(--color-outline);
  --outline-medium:  3px solid var(--color-outline);

  --shadow-pop-sm:  3px 3px 0 var(--color-outline);
  --shadow-pop:     5px 5px 0 var(--color-outline);
  --shadow-pop-lg:  8px 8px 0 var(--color-outline);

  --container:        1180px;
  --container-narrow: 780px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, lottie-player { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.01em;
  text-wrap: balance;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphens: manual;
}
p { color: var(--color-text-soft); text-wrap: pretty; }
strong { color: var(--color-text); font-weight: 700; }

/* =========================================================
   DESTAQUE POR SUBLINHADO
   ========================================================= */
u.u-blue, u.u-green, u.u-red, u.u-yellow {
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 100% 0.55em;
  background-position: 0 88%;
  padding: 0 0.05em;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: inherit !important;
}
u.u-blue   { background-image: linear-gradient(180deg, transparent 60%, #2d7dec 60%); }
u.u-green  { background-image: linear-gradient(180deg, transparent 60%, #41b883 60%); }
u.u-red    { background-image: linear-gradient(180deg, transparent 60%, #ef5350 60%); }
u.u-yellow { background-image: linear-gradient(180deg, transparent 60%, #fcb933 60%); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; background: var(--color-bg); }
.section-soft { background: var(--color-bg-soft); }

.section-title {
  font-size: var(--fs-2xl);
  text-align: center;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}
.section-subhead {
  text-align: center;
  font-size: var(--fs-base);
  color: var(--color-text-soft);
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-wrap: pretty;
}

/* =========================================================
   TOP URGENCY BAR (barra reta, colada no topo)
   ========================================================= */
.top-urgency {
  background: var(--color-danger-strong);
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.top-urgency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: siren-blink 1.4s ease-in-out infinite;
}
.top-urgency-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes siren-blink {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}
@media (max-width: 480px) {
  .top-urgency { font-size: 0.78rem; letter-spacing: 0.04em; padding: 0.55rem 0.6rem; }
  .top-urgency-icon { width: 14px; height: 14px; }
}

/* =========================================================
   PLACEHOLDERS
   ========================================================= */
.placeholder {
  background: var(--color-placeholder-bg);
  border: 2px dashed var(--color-outline);
  border-radius: var(--radius);
  color: var(--color-placeholder-text);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  min-height: 120px;
}
.placeholder-slide        { min-height: 280px; }
.placeholder-product      { min-height: 380px; }
.placeholder-bonus        { min-height: 160px; margin-bottom: var(--space-md); }
.placeholder-plan         { min-height: 160px; margin-bottom: var(--space-md); }
.placeholder-plan-big     { min-height: 200px; }

/* IMAGENS DE PRODUTO (mockups reais — sem outline porque a imagem já tem)
   aspect-ratio reserva o espaço da imagem ANTES dela carregar (lazy load).
   Sem isso, o layout "salta" ao carregar e quebra o scroll suave pra ancoras. */
.product-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* Mockup do Manual sozinho no Bloco "Kit Incluso" (grande, lado esquerdo) */
.product-img-kit {
  max-width: 460px;
  aspect-ratio: 975 / 1264;
}
/* Mockup nos cards de plano (compacto) */
.product-img-plan {
  max-width: 220px;
  margin-bottom: var(--space-md);
  aspect-ratio: 975 / 1264;
}
/* Plano completo — mockup um pouco maior porque é a oferta destaque */
.product-img-plan-big {
  max-width: 280px;
  aspect-ratio: 1122 / 1402;
}
/* Capas dos 4 bônus no Bloco 9 (aspect-ratio médio das 4) */
.product-img-bonus {
  max-width: 220px;
  margin: 0 auto var(--space-md);
  aspect-ratio: 850 / 1230;
}
@media (max-width: 480px) {
  .product-img-kit      { max-width: 320px; }
  .product-img-plan     { max-width: 180px; }
  .product-img-plan-big { max-width: 220px; }
  .product-img-bonus    { max-width: 200px; }
}

/* =========================================================
   BOTÕES CTA
   ========================================================= */
.cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: var(--outline-medium);
  cursor: pointer;
  width: 100%;
  max-width: 480px;
  margin: var(--space-md) auto 0;
}
.cta-primary {
  background: var(--color-success-strong);
  color: #ffffff !important;
  box-shadow: var(--shadow-pop);
}
.cta-primary:hover {
  background: var(--color-success-hover);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--color-outline);
}
.cta-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--color-outline);
}
.cta-secondary {
  background: var(--color-card-bg);
  color: var(--color-text) !important;
  box-shadow: var(--shadow-pop-sm);
}
.cta-secondary:hover {
  background: var(--color-bg-soft);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--color-outline);
}
.cta-giant {
  font-size: var(--fs-lg);
  padding: 1.2rem 2rem;
}
.center-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* =========================================================
   BADGES
   ========================================================= */
.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  border: var(--outline-thin);
}
.badge-success { background: var(--color-success); color: #ffffff; }
.badge-big     { font-size: var(--fs-sm); padding: 0.55rem 1.25rem; box-shadow: var(--shadow-pop-sm); }
.badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

/* =========================================================
   LISTAS
   ========================================================= */
.list-check li,
.list-x li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
  color: var(--color-text);
  font-size: var(--fs-base);
  line-height: 1.5;
  text-wrap: pretty;
}
.list-check li::before,
.list-x li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  border: 2px solid var(--color-outline);
}
.list-check li::before { content: "✓"; background: var(--color-success); }
.list-x li::before     { content: "✕"; background: var(--color-danger);  }

/* =========================================================
   GRID
   ========================================================= */
.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid    { gap: var(--space-lg); }
  .grid-2  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   CARDS BASE
   ========================================================= */
.card {
  background: var(--color-card-bg);
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-outline);
}
.card h3 {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.card p { font-size: var(--fs-sm); }

/* Card com ícone circular acima — BLOCO 3 */
.card-icon-top { text-align: center; padding-top: var(--space-xl); }
.card-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
}
.card-icon-wrap .icon { width: 28px; height: 28px; stroke-width: 2; }
.card-icon-blue   { background: var(--color-accent-soft); color: var(--color-accent); }
.card-icon-yellow { background: var(--color-yellow-soft); color: var(--color-yellow); }
.card-icon-green  { background: var(--color-success-soft); color: var(--color-success); }
.card-icon-brown  { background: var(--color-brown-soft); color: var(--color-brown); }

/* =========================================================
   BLOCO 1 — HERO
   ========================================================= */
.hero {
  padding: var(--space-lg) 0 var(--space-2xl);
  background: var(--color-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}
/* Mobile: text-top -> visual -> text-bottom (na ordem natural do DOM) */
.hero-text-top    { text-align: center; }
.hero-text-bottom { text-align: center; }

.hero h1 {
  font-size: 1.85rem;
  line-height: 1.12;
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.subhead {
  font-size: var(--fs-base);
  color: var(--color-text-soft);
  margin-bottom: 0;
  line-height: 1.5;
  text-wrap: pretty;
}

.hero-text-bottom .cta {
  margin: 0 auto;
  max-width: 420px;
}

.delivery-line {
  margin-top: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.delivery-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-mute);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-xs) auto;
}
.hero-animation {
  width: 100%;
  max-width: 280px;     /* MOBILE: animação compacta */
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .hero-animation { max-width: 400px; }
}
@media (min-width: 1024px) {
  .hero-animation { max-width: 500px; }
}

.seal {
  position: absolute;
  background: var(--color-brown);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.seal-icon {
  width: 14px;
  height: 14px;
  color: #ffffff;
  flex-shrink: 0;
}
.seal-top-left     { top: 4%;   left: 0;  background: var(--color-brown); }
.seal-bottom-right { bottom: 6%; right: 0; background: var(--color-success); }

/* =========================================================
   BLOCO 2 — CARROSSEL
   ========================================================= */
.carousel { position: relative; margin-top: var(--space-md); }
.carousel-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-sm);
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}
.slide-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 1536;       /* reserva espaço antes do lazy load */
  border-radius: var(--radius);
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  background: var(--color-card-bg);
}
@media (min-width: 720px) {
  .carousel-slide { flex: 0 0 calc(50% - var(--space-sm)); }
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(33.333% - 0.85rem); }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-card-bg);
  color: var(--color-text);
  border: var(--outline-thin);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pop-sm);
  z-index: 2;
  transition: transform 0.15s, background 0.15s;
}
.carousel-arrow:hover { background: var(--color-yellow); transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
@media (min-width: 720px) {
  .carousel-prev { left: -24px; }
  .carousel-next { right: -24px; }
}

.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: var(--space-md); }
.carousel-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--color-card-bg);
  border: 2px solid var(--color-outline);
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.carousel-dot.is-active { background: var(--color-success-strong); transform: scale(1.2); }

.carousel-slide-testimonial { display: flex; }
.carousel-slide-testimonial .testimonial { width: 100%; }

/* =========================================================
   BLOCO 4 — ANTES / DEPOIS
   ========================================================= */
.ba-grid { gap: var(--space-lg); }

.ba-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}
.ba-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
}
.ba-tag-bad  { background: var(--color-danger); color: #ffffff; }
.ba-tag-good { background: var(--color-success); color: #ffffff; }

/* Card SEM — borda vermelha (em vez de preta) */
.ba-card-bad  {
  border-color: var(--color-danger);
  background: var(--color-card-bg);
}
/* Card COM — borda verde sólida + fundo verde bem suave (sem azul) */
.ba-card-good {
  border-color: var(--color-success);
  background: var(--color-success-soft);
}

.ba-animation {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto var(--space-md);
}

.ba-card h3 {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}
.ba-card-bad h3  { color: var(--color-danger); }
.ba-card-good h3 { color: var(--color-success); }

.ba-card .list-check,
.ba-card .list-x {
  text-align: left;
  margin: 0 auto;
  max-width: 320px;
}

/* =========================================================
   BLOCO 5 — RESULTADO REAL
   ========================================================= */
.result-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-pop-lg);
  text-align: center;
  position: relative;
}
.result-eyebrow {
  display: inline-block;
  background: var(--color-success);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: var(--outline-thin);
}
.result-card h2 {
  font-size: var(--fs-2xl);
  margin: 0 auto var(--space-md);
  max-width: 600px;
  text-wrap: balance;
}
.result-sub {
  font-size: var(--fs-base);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}
.result-list-wrap { display: flex; justify-content: center; }
.result-list { text-align: left; max-width: 480px; margin: 0 auto var(--space-lg); }

.result-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px dashed var(--color-border-soft);
}
.result-stat { display: flex; flex-direction: column; align-items: center; }
.result-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-success-strong);
  line-height: 1;
}
.result-stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-mute);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* =========================================================
   BLOCO 6 — URGÊNCIA EMOCIONAL
   ========================================================= */
.emotional-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-color: var(--color-danger);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-pop-lg);
  position: relative;
}
.emotional-tag {
  display: inline-block;
  background: var(--color-danger);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: var(--outline-thin);
}
.emotional-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  line-height: 1.25;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.emotional-sub {
  font-size: var(--fs-base);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text);
  font-weight: 600;
  text-wrap: pretty;
}

.emotional-bullets {
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}
.emotional-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-danger-soft);
  border: 2px solid var(--color-danger);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--fs-sm);
  line-height: 1.45;
}
.emotional-x {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-danger);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  border: 2px solid var(--color-outline);
}

/* =========================================================
   BLOCO 7 — IDEAL PRA VOCÊ (cards com BG colorido)
   ========================================================= */
.benefits-grid { gap: var(--space-lg); }

.benefit-card {
  border: var(--outline-medium);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow-pop);
  position: relative;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--color-outline);
}

.benefit-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text-mute);
  opacity: 0.5;
  line-height: 1;
}

.benefit-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  background: #ffffff;
}
.benefit-icon-circle svg { width: 30px; height: 30px; }

.benefit-card h3 {
  font-size: var(--fs-base);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.benefit-card p { font-size: var(--fs-sm); }

/* Cores de fundo por benefício */
.benefit-1 { background: var(--color-danger-soft);  }
.benefit-2 { background: var(--color-success-soft); }
.benefit-3 { background: var(--color-yellow-soft);  }
.benefit-4 { background: var(--color-brown-soft);   }
.benefit-1 .benefit-icon-circle { color: var(--color-danger);  }
.benefit-2 .benefit-icon-circle { color: var(--color-success); }
.benefit-3 .benefit-icon-circle { color: var(--color-yellow);  }
.benefit-4 .benefit-icon-circle { color: var(--color-brown);   }

/* =========================================================
   BLOCO 7 — PARA QUEM É / NÃO É
   ========================================================= */
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px) {
  .for-whom-grid { grid-template-columns: repeat(2, 1fr); }
}

.for-whom-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s, box-shadow 0.18s;
}
.for-whom-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--color-outline);
}
.for-whom-yes {
  border-color: var(--color-success);
  background: var(--color-success-soft);
}
.for-whom-no {
  border-color: var(--color-danger);
  background: var(--color-danger-soft);
}

.for-whom-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 2px dashed currentColor;
}
.for-whom-yes .for-whom-header { color: var(--color-success); border-bottom-color: var(--color-success); }
.for-whom-no  .for-whom-header { color: var(--color-danger);  border-bottom-color: var(--color-danger); }

.for-whom-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
}
.for-whom-icon svg { width: 22px; height: 22px; }
.for-whom-yes .for-whom-icon { color: var(--color-success); }
.for-whom-no  .for-whom-icon { color: var(--color-danger); }

.for-whom-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: inherit;
  margin: 0;
  line-height: 1.1;
}
.for-whom-card ul li {
  font-size: var(--fs-sm);
  line-height: 1.5;
}

/* =========================================================
   BLOCO 8 — KIT
   ========================================================= */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 900px) {
  .kit-grid { grid-template-columns: 1fr 1.2fr; }
}
.card-product {
  border: var(--outline-medium);
  box-shadow: var(--shadow-pop-lg);
  border-radius: var(--radius-lg);
}
.card-product h3 {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  font-weight: 700;
}
.card-product .kit-sub {
  margin-bottom: var(--space-md);
  color: var(--color-text-soft);
  font-size: var(--fs-base);
}
.kit-footer-text {
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-success);
  text-align: center;
  font-size: var(--fs-base);
}

/* =========================================================
   BLOCO 9 — BÔNUS
   ========================================================= */
.card-bonus { display: flex; flex-direction: column; }
.card-bonus h3 { font-size: var(--fs-base); margin-bottom: var(--space-xs); }
.card-bonus p { flex: 1; }   /* descrição empurra o valor pro rodapé do card */

.bonus-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px dashed var(--color-border-soft);
}
.bonus-old-value {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  font-weight: 600;
}
.bonus-old-value s {
  color: var(--color-danger);
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.bonus-free-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-success);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  white-space: nowrap;
}

.bonus-total {
  text-align: center;
  font-size: var(--fs-base);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-yellow-soft);
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
  border-radius: var(--radius);
  color: var(--color-text);
  font-weight: 600;
  text-wrap: pretty;
}
.bonus-total strong { color: var(--color-danger); font-weight: 800; }

/* =========================================================
   BLOCO 10 — PLANOS (refeito)
   ========================================================= */
.urgency-banner {
  background: var(--color-danger-strong);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
  margin: 0 auto var(--space-xl);
  max-width: 720px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.urgency-banner-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #ffffff;
  animation: siren-blink 1.4s ease-in-out infinite;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}
@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: 0.85fr 1.2fr;
    gap: var(--space-lg);
    align-items: start;   /* básico alinhado no TOPO, não no meio */
  }
}

.plan {
  background: var(--color-card-bg);
  border: var(--outline-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-pop);
}
.plan-basic {
  opacity: 0.94;
  background: var(--color-bg-soft);
}
/* No desktop, plano básico fica menor: padding menor, fontes ligeiramente menores */
@media (min-width: 900px) {
  .plan-basic {
    padding: var(--space-lg) var(--space-md);
    align-self: start;
  }
  .plan-basic .plan-title { font-size: var(--fs-base); }
  .plan-basic .list-check li { font-size: var(--fs-sm); }
  .plan-basic .product-img-plan { max-width: 180px; }
  .plan-basic .plan-price { font-size: 2.5rem; }
}
.plan-featured {
  border: var(--outline-medium);
  background: var(--color-success-soft);
  box-shadow: var(--shadow-pop-lg);
  padding-top: var(--space-2xl);
}
@media (min-width: 900px) {
  .plan-featured { transform: translateY(-6px); }
}

/* Utilitários: mostrar/esconder por viewport */
.show-desktop { display: none; }
.show-mobile  { display: inline; }
@media (min-width: 900px) {
  .show-desktop { display: inline; }
  .show-mobile  { display: none; }
}

.plan-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-success);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.plan-badge-top .seal-icon { width: 14px; height: 14px; color: #ffffff; }
.plan-badge-seal { margin: 0 auto var(--space-sm); background: var(--color-success); }

.plan-title {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  margin: var(--space-sm) 0 var(--space-md);
  font-weight: 700;
}
.plan .list-check { text-align: left; margin: var(--space-md) auto; max-width: 380px; }

/* MINI-CARDS DE PREÇO (vermelho riscado + verde grande) */
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-md);
}
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-pop-sm);
  line-height: 1.05;
}
.price-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.price-card-value {
  font-size: var(--fs-2xl);     /* 1.75rem — bem maior que antes (era 1.125rem) */
  font-weight: 700;
  white-space: nowrap;
}

.price-card-old {
  background: var(--color-danger-soft);
  color: var(--color-danger);
}
.price-card-old .price-card-value {
  font-size: var(--fs-xl);      /* "De" um pouco menor que "Por" — hierarquia */
}
.price-card-old .price-card-value s {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.price-card-now {
  background: var(--color-success-strong);
  color: #ffffff;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-pop);
}
.price-card-now .price-card-value {
  font-size: 2.75rem;           /* 44px — destaque GRANDE */
  letter-spacing: -0.01em;
}

/* Versão GIGANTE no plano completo */
.price-row-big .price-card-old .price-card-value {
  font-size: var(--fs-2xl);     /* 1.75rem */
}
.price-row-big .price-card-now {
  padding: 1.3rem 1.6rem;
}
.price-row-big .price-card-now .price-card-value {
  font-size: 3.5rem;            /* 56px — preço hero do site */
  letter-spacing: -0.02em;
}

.plan-installments { font-size: var(--fs-sm); color: var(--color-text-soft); }
.plan-savings {
  font-size: var(--fs-sm);
  color: var(--color-success);
  font-weight: 700;
  margin-top: var(--space-xs);
}
.plan-warning {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background: var(--color-yellow-soft);
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-text);
  text-align: left;
}
.plan-warning strong { color: var(--color-danger); }
.plan-urgency { margin-top: var(--space-sm); font-weight: 700; font-size: var(--fs-sm); color: var(--color-danger); }
.plan-guarantee { margin-top: var(--space-xs); font-size: var(--fs-sm); color: var(--color-success); font-weight: 700; }
.plan-payment-methods {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--color-text-mute);
  letter-spacing: 0.05em;
}

/* =========================================================
   BLOCO 11 — GARANTIA (fundo verde forte)
   ========================================================= */
.guarantee-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-success);
  border: var(--outline-medium);
  box-shadow: var(--shadow-pop-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: #ffffff;
}
@media (min-width: 720px) {
  .guarantee-card {
    grid-template-columns: 200px 1fr;
    text-align: left;
  }
}

.guarantee-seal {
  width: 180px;
  height: 180px;
  margin: 0 auto;
}
.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
  color: #ffffff;
  text-wrap: balance;
}
.guarantee-content p {
  color: #f5fff8;
  text-wrap: pretty;
}
.guarantee-content p strong { color: #ffffff; }
.guarantee-note {
  margin-top: var(--space-sm);
  font-weight: 800;
  color: #fff4d6;
  font-size: var(--fs-base);
}

/* =========================================================
   BLOCO 12 — DEPOIMENTOS
   ========================================================= */
.testimonial {
  background: var(--color-card-bg);
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
}
.stars {
  color: var(--color-yellow);
  font-size: var(--fs-lg);
  letter-spacing: 0.18rem;
  margin-bottom: var(--space-sm);
  -webkit-text-stroke: 1px var(--color-outline);
}
.testimonial-text {
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.55;
  text-wrap: pretty;
}
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); color: var(--color-text); }
.testimonial-meta { font-size: var(--fs-xs); color: var(--color-text-mute); }

/* =========================================================
   BLOCO 13 — COMECE EM 2 MINUTOS
   ========================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}
@media (min-width: 720px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.step-line { display: none; }
@media (min-width: 1024px) {
  .step-line {
    display: block;
    position: absolute;
    top: 56px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    border-top: 2px dashed var(--color-text-mute);
    z-index: 0;
  }
}

.step-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-pop);
  z-index: 1;
}
.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-success-strong);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--outline-thin);
  box-shadow: var(--shadow-pop-sm);
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-yellow-soft);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline);
}
.step-icon-wrap svg { width: 26px; height: 26px; }
.step-card h3 { font-size: var(--fs-base); }
.step-card p  { font-size: var(--fs-sm); }

/* =========================================================
   BLOCO 14 — FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  border: var(--outline-thin);
  border-radius: var(--radius);
  background: var(--color-card-bg);
  overflow: hidden;
  box-shadow: var(--shadow-pop-sm);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.faq-item[open] {
  border-color: var(--color-success-strong);
  box-shadow: var(--shadow-pop);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--color-text);
  position: relative;
  padding-right: 3rem;
  text-wrap: pretty;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-success-strong);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline);
  border-radius: 50%;
  background: var(--color-success-soft);
  transition: transform 0.18s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--color-success-strong);
  color: #ffffff;
}
.faq-item p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-text-soft);
  text-wrap: pretty;
}

/* =========================================================
   BLOCO 15 — DUAS OPÇÕES (closer final)
   ========================================================= */
.final-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-pop-lg);
  text-align: center;
  position: relative;
}

.final-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-text);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  border: var(--outline-thin);
}
.final-timer-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-danger);
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
#countdown {
  color: var(--color-yellow);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-left: 0.3rem;
}

.final-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.final-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
@media (min-width: 720px) {
  .final-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.final-option-card {
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.final-option-bad {
  background: var(--color-danger-soft);
  border-color: var(--color-danger);
}
.final-option-good {
  background: var(--color-success-soft);
  border-color: var(--color-success);
}

.final-option-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: #ffffff;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
}
.final-option-bad  .final-option-tag { background: var(--color-danger); }
.final-option-good .final-option-tag { background: var(--color-success); }

.final-option-card p {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
  text-wrap: pretty;
}
.final-option-card p strong { color: var(--color-text); font-weight: 700; }
.final-option-good p em {
  font-style: italic;
  color: var(--color-success-strong);
  font-weight: 600;
}

.final-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  max-width: 600px;
  margin: var(--space-lg) auto;
  padding: var(--space-md) 0;
  border-top: 2px dashed var(--color-border-soft);
  border-bottom: 2px dashed var(--color-border-soft);
}
.final-includes li {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.final-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-success);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  border: 1.5px solid var(--color-outline);
}
.final-tag {
  color: var(--color-text-mute);
  font-size: var(--fs-xs);
  font-weight: 500;
}

.final-price { margin: var(--space-lg) 0; }
.final-price-old {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}
.final-price-old s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--color-danger);
}
.final-price-now {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.1;
}
.final-price-highlight {
  color: var(--color-success-strong);
  font-size: var(--fs-5xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 0.3rem;
}
.final-price-installments {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  margin-top: var(--space-xs);
}

.final-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  margin-top: var(--space-md);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}
.final-trust-icon {
  width: 16px;
  height: 16px;
  color: var(--color-text-soft);
  flex-shrink: 0;
}

.final-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-card-bg);
  border: 2px solid var(--color-outline);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pop-sm);
}
.final-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .final-card { padding: var(--space-xl) var(--space-md); }
  .final-title { font-size: 1.6rem; }
  .final-price-highlight { font-size: 3rem; }
  .final-price-now { font-size: 1.4rem; }
  .final-includes li { font-size: var(--fs-xs); }
  .final-badge { font-size: 0.6rem; padding: 0.35rem 0.6rem; }
}

/* =========================================================
   PÁGINAS LEGAIS (Termos de Uso, Política de Privacidade)
   ========================================================= */
.legal-header {
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-outline);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.legal-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-success-strong);
  padding: 0.45rem 0.95rem;
  background: var(--color-success-soft);
  border: 2px solid var(--color-outline);
  border-radius: 999px;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.legal-back:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--color-outline);
}

.legal-page {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  min-height: 70vh;
}
.legal-tag {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
}
.legal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.legal-update {
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  margin-bottom: var(--space-xl);
}
.legal-intro {
  background: var(--color-bg-soft);
  border: 2px solid var(--color-outline);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
}
.legal-intro strong { color: var(--color-success-strong); }

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  margin: var(--space-lg) 0 var(--space-xs);
  color: var(--color-text);
}
.legal-content p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
}
.legal-content p strong { color: var(--color-text); }
.legal-content a {
  color: var(--color-success-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.legal-content ul {
  list-style: none;
  margin: var(--space-sm) 0 var(--space-md);
  padding: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text-soft);
}
.legal-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-success-strong);
  font-weight: 700;
}
.legal-callout {
  background: var(--color-success-soft);
  border: 2px solid var(--color-success);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
  margin: var(--space-lg) 0;
}
.legal-callout p { color: var(--color-text); margin-bottom: 0; }
.legal-callout-danger {
  background: var(--color-danger-soft);
  border-color: var(--color-danger);
}
.legal-callout-info {
  background: var(--color-yellow-soft);
  border-color: var(--color-yellow);
}
.legal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--color-outline);
  border-radius: var(--radius);
  overflow: hidden;
  margin: var(--space-md) 0;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-pop-sm);
}
.legal-table th, .legal-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
}
.legal-table th {
  background: var(--color-bg-soft);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
}
.legal-table tr:last-child td { border-bottom: none; }

.legal-footnote {
  background: var(--color-bg-soft);
  border-top: 2px dashed var(--color-border-soft);
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  text-align: center;
}

@media (max-width: 480px) {
  .legal-title { font-size: 1.75rem; }
  .legal-content h2 { font-size: 1.2rem; }
  .legal-back { padding: 0.4rem 0.8rem; font-size: var(--fs-xs); }
}

/* =========================================================
   PÁGINA DE OBRIGADO (/obrigado)
   ========================================================= */
.thanks-page {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-bg);
  min-height: 70vh;
}

/* HERO */
.thanks-hero {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.thanks-success-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--space-md);
  animation: thanks-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(4px 4px 0 var(--color-outline));
}
.thanks-success-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes thanks-pop {
  0%   { transform: scale(0);    opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.thanks-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--color-text);
}
.thanks-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-soft);
  max-width: 540px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* CARD DESTACADO E-MAIL */
.thanks-email-card {
  background: var(--color-yellow-soft);
  border: var(--outline-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-pop-lg);
  margin-bottom: var(--space-xl);
}
.thanks-email-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  color: var(--color-text);
}
.thanks-email-icon svg { width: 30px; height: 30px; }

.thanks-email-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.thanks-email-card p {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 480px;
  margin: 0 auto;
}

/* CARD "O QUE VOCÊ VAI RECEBER" */
.thanks-receive {
  margin-bottom: var(--space-xl);
}
.thanks-receive-card {
  background: var(--color-success-soft);
  border: var(--outline-medium);
  border-color: var(--color-success);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-pop-lg);
}
.thanks-receive-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-success);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
}
.thanks-receive-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.thanks-receive-intro {
  font-size: var(--fs-base);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

.thanks-receive-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.thanks-receive-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-card-bg);
  border: 2px solid var(--color-outline);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-pop-sm);
}
.thanks-receive-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 0.1rem;
}
.thanks-receive-item-text {
  flex: 1;
  text-align: left;
  line-height: 1.4;
}
.thanks-receive-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--color-text);
  margin-bottom: 0.15rem;
}
.thanks-receive-item-text span {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}
.thanks-receive-foot {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
  padding-top: var(--space-sm);
  border-top: 2px dashed var(--color-success);
  margin: 0;
  text-wrap: pretty;
}
.thanks-receive-foot strong { color: var(--color-success-strong); }

/* SEÇÕES (não encontrou, próximos passos) */
.thanks-section { margin-bottom: var(--space-xl); }
.thanks-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

/* LISTA DE CHECKS */
.thanks-checks {
  list-style: none;
  padding: 0;
}
.thanks-checks li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.7rem;
  font-size: var(--fs-base);
  color: var(--color-text);
  line-height: 1.5;
}
.thanks-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-success);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid var(--color-outline);
}

/* CARD DE AJUDA */
.thanks-help {
  background: var(--color-card-bg);
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-pop-sm);
  text-align: center;
  margin-bottom: var(--space-xl);
}
.thanks-help-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.thanks-help p {
  margin-bottom: var(--space-sm);
}
.thanks-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--color-success-strong) !important;
  background: var(--color-success-soft);
  border: 2px solid var(--color-outline);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  margin: 0.5rem 0;
  box-shadow: var(--shadow-pop-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.thanks-email-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop);
}
.thanks-email-link-icon { width: 18px; height: 18px; flex-shrink: 0; }
.thanks-help-small {
  font-size: var(--fs-sm);
  color: var(--color-text-mute);
  margin-top: var(--space-xs);
}

/* PRÓXIMOS PASSOS */
.thanks-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 720px) {
  .thanks-steps { grid-template-columns: repeat(2, 1fr); }
}

.thanks-step {
  position: relative;
  background: var(--color-card-bg);
  border: var(--outline-thin);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-md) var(--space-md) 5rem;
  box-shadow: var(--shadow-pop-sm);
  min-height: 80px;
  display: flex;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.thanks-step:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop);
}
.thanks-step-num {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-success-strong);
  line-height: 1;
  opacity: 0.7;
  letter-spacing: -0.02em;
}
.thanks-step p {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.45;
  color: var(--color-text);
}

/* FOOTER */
.thanks-footer {
  background: var(--color-bg-soft);
  border-top: var(--outline-thin);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.thanks-footer-thanks {
  font-size: var(--fs-base);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.thanks-footer-paws {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-success-strong);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.thanks-footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.12em;
  font-size: var(--fs-sm);
}

@media (max-width: 480px) {
  .thanks-page { padding: var(--space-xl) 0; }
  .thanks-title { font-size: 1.7rem; }
  .thanks-subtitle { font-size: var(--fs-base); }
  .thanks-email-card { padding: var(--space-lg) var(--space-md); }
  .thanks-email-card h2 { font-size: 1.35rem; }
  .thanks-success-icon { width: 88px; height: 88px; }
  .thanks-step { padding-left: 4rem; min-height: 72px; }
  .thanks-step-num { font-size: 2rem; left: 0.7rem; }
  .thanks-section h3 { font-size: var(--fs-lg); }
}

/* =========================================================
   STICKY CTA (mobile only)
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 251, 242, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--color-outline);
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .cta {
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  border-width: 2px;
  box-shadow: var(--shadow-pop);
}

@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }   /* espaço pro sticky não cobrir o footer */
}

/* =========================================================
   BLOCO 16 — RODAPÉ
   ========================================================= */
.footer {
  background: var(--color-bg-soft);
  border-top: var(--outline-thin);
  color: var(--color-text-soft);
  padding: var(--space-xl) 0;
  text-align: center;
}
.footer p, .footer a { color: var(--color-text-soft); }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}
.footer-copyright, .footer-disclaimer { font-size: var(--fs-sm); margin-bottom: 0.4rem; }
.footer-links { margin: var(--space-md) 0; font-size: var(--fs-sm); }
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-success-strong);
}
.footer-small {
  font-size: var(--fs-xs);
  color: var(--color-text-mute);
  max-width: 720px;
  margin: var(--space-md) auto 0;
  line-height: 1.5;
  text-wrap: pretty;
}
/* Assinatura discreta — pra indexação no Google (Alerts detecta cópia) */
.footer-signature {
  font-size: 0.65rem;
  color: var(--color-border-soft);
  margin-top: var(--space-sm);
  letter-spacing: 0.05em;
  font-family: monospace;
  opacity: 0.6;
}

/* =========================================================
   RESPONSIVO — MOBILE
   ========================================================= */
@media (max-width: 480px) {
  .hero { padding: var(--space-md) 0 var(--space-xl); }
  .hero h1 { font-size: 1.85rem; line-height: 1.18; }
  .section { padding: var(--space-xl) 0; }
  .section-title { font-size: 1.55rem; line-height: 1.2; }
  .emotional-title { font-size: 1.25rem; line-height: 1.3; }
  .result-card h2 { font-size: 1.5rem; }
  .placeholder-product { min-height: 280px; }
  .placeholder-slide { min-height: 240px; }
  .cta { padding: 0.95rem 1.1rem; font-size: 0.95rem; }
  .cta-giant { font-size: var(--fs-base); padding: 1.1rem 1.4rem; }
  .urgency-banner { font-size: 0.78rem; padding: 0.7rem 0.8rem; letter-spacing: 0.02em; }
  .seal { font-size: 0.6rem; padding: 0.35rem 0.65rem; }
  .seal-icon { width: 11px; height: 11px; }
  .ba-card { padding: var(--space-lg) var(--space-md); }
  .ba-animation { max-width: 240px; }
  .step-card { padding-top: var(--space-2xl); }
  .guarantee-seal { width: 140px; height: 140px; }
  .result-stat-num { font-size: 1.4rem; }
  .result-stat-label { font-size: 0.68rem; }
  .price-card { padding: 0.7rem 0.85rem; }
  .price-card-label { font-size: 0.68rem; }
  .price-card-value { font-size: var(--fs-lg); }
  .price-card-old .price-card-value { font-size: var(--fs-base); }
  .price-card-now .price-card-value { font-size: 2rem; }
  .price-row-big .price-card-now { padding: 0.95rem 1.1rem; }
  .price-row-big .price-card-old .price-card-value { font-size: var(--fs-lg); }
  .price-row-big .price-card-now .price-card-value { font-size: 2.5rem; }
  .price-row { gap: var(--space-sm); }
}

@media (min-width: 720px) {
  .section-title { font-size: var(--fs-3xl); }
  .hero h1       { font-size: var(--fs-3xl); }
  .emotional-title { font-size: var(--fs-2xl); }
  .result-card h2 { font-size: var(--fs-3xl); }
}

@media (min-width: 1024px) {
  body { font-size: 1.05rem; }
  .hero { padding: var(--space-2xl) 0; }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas:
      "top    visual"
      "bottom visual";
    gap: var(--space-2xl) var(--space-2xl);
    row-gap: var(--space-md);
    align-items: center;
  }
  .hero-text-top    { grid-area: top;    text-align: left; }
  .hero-visual      { grid-area: visual; }
  .hero-text-bottom { grid-area: bottom; text-align: left; }
  .hero-text-bottom .cta { margin-left: 0; margin-right: 0; }
  .hero-text-bottom .delivery-line { justify-content: flex-start; }
  .hero h1   { font-size: var(--fs-4xl); }
  .section-title { font-size: var(--fs-3xl); }
  .guarantee-content h2 { font-size: var(--fs-2xl); }
}
