/* =========================================================
   PROTEÇÃO ANTI-CÓPIA (Tier 1) — BLOQUEIO GLOBAL
   Bloqueia seleção, cópia e drag em TODA a página.
   Em localhost (body.dev-mode) tudo fica liberado pra debug.
   ========================================================= */
html, body, body *, body *::before, body *::after {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;       /* iOS: bloqueia menu toque longo */
}

/* Bloqueia arrastar imagens, SVGs e animações */
img, lottie-player, svg, video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Inputs/textarea PRECISAM ser selecionáveis (futuros formulários) */
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* MODO DEV (body.dev-mode aplicado em localhost): libera tudo */
body.dev-mode,
body.dev-mode *,
body.dev-mode *::before,
body.dev-mode *::after {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}
body.dev-mode img,
body.dev-mode lottie-player,
body.dev-mode svg,
body.dev-mode video {
  -webkit-user-drag: auto !important;
  user-drag: auto !important;
}

/* =========================================================
   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); }

/* Mobile: padding menor entre seções pra dar PEEK visual da próxima seção.
   Garante que a pessoa veja "tem mais conteúdo embaixo" sem precisar rolar. */
@media (max-width: 720px) {
  .section { padding: var(--space-lg) 0; }
}

.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); }
}

/* Emoji 🐾 da topbar nova — sem animação de sirene (mensagem é positiva, não urgência) */
.top-urgency-emoji {
  display: inline-block;
  font-size: 1.05em;
  margin-right: 0.1em;
  line-height: 1;
}

@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;
  object-fit: contain;
}
/* Mockup do Manual sozinho no Bloco "Kit Incluso" (grande, lado esquerdo) */
.product-img-kit {
  max-width: 600px;
  aspect-ratio: 1 / 1;
}
/* Mockup nos cards de plano (compacto) */
.product-img-plan {
  max-width: 220px;
  margin-bottom: var(--space-md);
  aspect-ratio: 1 / 1;
}
/* Plano completo — mockup um pouco maior porque é a oferta destaque */
.product-img-plan-big {
  max-width: 280px;
  aspect-ratio: 1 / 1;
}
/* Capas dos 4 bônus no Bloco 9 (aspect-ratio médio das 4) */
.product-img-bonus {
  max-width: 300px;
  margin: 0 auto var(--space-md);
  aspect-ratio: 1 / 1;
}
@media (max-width: 480px) {
  .product-img-kit      { max-width: 360px; }
  .product-img-plan     { max-width: 180px; }
  .product-img-plan-big { max-width: 220px; }
  .product-img-bonus    { max-width: 270px; }
}

/* =========================================================
   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-lg);
  background: var(--color-bg);
}
@media (max-width: 720px) {
  .hero { padding: var(--space-md) 0 var(--space-md); }
}
.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);
}

/* ===========================================================
   SCROLL HINT — Pílula AZUL clicável que rola pro vídeo da Ana.
   Cor diferente do CTA verde de venda (evita dead click — pessoa
   sabe que não é checkout, é só "explorar mais"). Pulsa de leve
   pra chamar atenção sem irritar.
   =========================================================== */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: var(--space-lg) auto 0;
  padding: 0.75rem 1.4rem;
  background: #2d7dec;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: var(--outline-medium);
  border-radius: 999px;
  box-shadow: var(--shadow-pop-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  animation: scroll-hint-pulse 2.2s ease-in-out infinite;
}
.scroll-hint:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--color-outline);
  filter: brightness(1.08);
  animation: none;
}
.scroll-hint:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--color-outline);
}
.scroll-hint-text {
  display: inline-block;
}
.scroll-hint-arrow {
  width: 22px;
  height: 22px;
  color: #ffffff;
  animation: scroll-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-hint-pulse {
  0%, 100% {
    box-shadow: var(--shadow-pop-sm), 0 0 0 0 rgba(45, 125, 236, 0.45);
  }
  50% {
    box-shadow: var(--shadow-pop-sm), 0 0 0 12px rgba(45, 125, 236, 0);
  }
}
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint,
  .scroll-hint-arrow { animation: none; }
}
@media (max-width: 720px) {
  .scroll-hint {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    padding: 0.7rem 1.15rem;
  }
  .scroll-hint-arrow { width: 20px; height: 20px; }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-xs) auto;
  /* Altura minima pras paginas internas terem espaco — match com mockup */
  min-height: 320px;
}

/* PAGINAS INTERNAS do PDF aparecendo atras do mockup, uma de cada lado.
   Layout simetrico: mostram que tem conteudo dentro do livro sem
   pesar visualmente. z-index 1 (mockup tem 2) — ficam atras. */
.hero-page-peek {
  position: absolute;
  width: 110px;
  height: auto;
  top: 12%;             /* mesmo nivel vertical pras 2 paginas */
  border: 2px solid var(--color-outline);
  border-radius: 6px;
  background: #fff;
  z-index: 1;
  animation: hero-page-float 6s ease-in-out infinite;
}
@media (min-width: 720px) {
  .hero-page-peek { width: 140px; }
}
@media (min-width: 1024px) {
  .hero-page-peek { width: 170px; }
}

/* PEEK 1 (sentar) — lado ESQUERDO do mockup */
.hero-page-peek-1 {
  left: -4%;
  animation-delay: 0s;
}
/* PEEK 2 (dar a pata) — lado DIREITO do mockup */
.hero-page-peek-2 {
  right: -4%;
  animation-delay: 2s;
}

@keyframes hero-page-float {
  0%, 100% { transform: rotate(var(--peek-rot, 0deg)) translateY(0); }
  50%      { transform: rotate(var(--peek-rot, 0deg)) translateY(-5px); }
}
.hero-page-peek-1 { --peek-rot: -6deg; }
.hero-page-peek-2 { --peek-rot: 6deg; }

@media (prefers-reduced-motion: reduce) {
  .hero-page-peek { animation: none; }
}

/* ===========================================================
   STICKERS DO HERO — palavras do nicho ("Furacão", "Taz-Mania",
   "Arteiro") espalhados ao redor do cachorrinho.
   NÃO SÃO BOTÕES: sem cursor pointer, sem hover, sem sombra de
   pílula. Etiquetas decorativas que geram identificação imediata
   com o público. Rotação leve pra parecer adesivo colado.
   =========================================================== */
.hero-sticker {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border: var(--outline-medium);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-outline);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: hero-sticker-float 5s ease-in-out infinite;
  box-shadow: 2px 2px 0 var(--color-outline);
}

/* PALETA POSITIVA — cores de RESULTADO (verde sucesso, amarelo brilho, azul confianca).
   Substituiu paleta anterior (amarelo+vermelho+marrom) que era de DOR/problema. */
.hero-sticker-green {
  background: #1eaa5c;
  color: #ffffff;
  animation-delay: 0s;
}
.hero-sticker-blue {
  background: #2d7dec;
  color: #ffffff;
  animation-delay: 1.6s;
}
.hero-sticker-yellow {
  background: #fcb933;
  color: var(--color-outline);
  animation-delay: 3.2s;
}

/* Floating animation — cada sticker flutua suavemente, com leve giro
   pra parecer adesivo solto no ar. Delays diferentes evitam sincronia. */
@keyframes hero-sticker-float {
  0%, 100% {
    transform: rotate(var(--rot, 0deg)) translateY(0);
  }
  50% {
    transform: rotate(calc(var(--rot, 0deg) + 2deg)) translateY(-10px);
  }
}
.hero-sticker-green  { --rot: -4deg; }
.hero-sticker-blue   { --rot: 3deg; }
.hero-sticker-yellow { --rot: -2deg; }

@media (prefers-reduced-motion: reduce) {
  .hero-sticker { animation: none; }
}

@media (min-width: 720px) {
  .hero-sticker { font-size: 0.85rem; padding: 0.5rem 0.9rem; }
}

.hero-animation {
  width: 100%;
  max-width: 280px;     /* MOBILE: animação compacta */
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;   /* fica na frente do mockup */
  z-index: 1;
}
@media (min-width: 720px) {
  .hero-animation { max-width: 400px; }
}
@media (min-width: 1024px) {
  .hero-animation { max-width: 500px; }
}

/* MOCKUP DO MANUAL no hero — substitui o lottie cachorrinho
   pra dar continuidade visual com o ad do Facebook.
   Mockup eh vertical (975x1264 = 0.77 aspect), entao maior altura. */
.hero-mockup {
  display: block;
  width: 100%;
  max-width: 320px;     /* MOBILE — quadrado, livro centralizado c/ margem */
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;           /* na FRENTE das paginas internas (z-index 1) */
  filter: drop-shadow(6px 8px 0 rgba(26, 26, 26, 0.15));
  animation: hero-mockup-float 5.5s ease-in-out infinite;
}
@media (min-width: 720px) {
  .hero-mockup { max-width: 430px; }
}
@media (min-width: 1024px) {
  .hero-mockup { max-width: 500px; }
}

@keyframes hero-mockup-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mockup { animation: none; transform: rotate(-1deg); }
}

.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);
  /* IMPORTANTE: contain previne que o gesto de swipe no carrossel propague
     pro body e arraste a pagina inteira pro lado (bug Clarity 10/06).
     overflow-x:clip no html/body QUEBRAVA o scroll smooth — esta solucao
     fica isolada ao carrossel sem afetar nada mais. */
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}
.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 / 1448;       /* reserva espaço antes do lazy load */
  object-fit: contain;
  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;
  animation: urgency-banner-pulse 2s ease-in-out infinite;
}
@keyframes urgency-banner-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-pop-sm), 0 0 0 0 rgba(230, 57, 70, 0.55);
  }
  50% {
    transform: scale(1.025);
    box-shadow: var(--shadow-pop-sm), 0 0 0 12px rgba(230, 57, 70, 0);
  }
}
.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;
  justify-content: center;
}
/* :has() detecta se o Plano Básico está visível.
   Se SIM: 2 colunas (básico estreito + completo largo).
   Se NÃO (hidden): 1 coluna centralizada com largura limitada
   pra não esticar o card a tela inteira em desktop. */
@media (min-width: 900px) {
  .plans-grid:has(.plan-basic:not([hidden])) {
    grid-template-columns: 0.85fr 1.2fr;
    gap: var(--space-lg);
    align-items: start;
  }
  .plans-grid:not(:has(.plan-basic:not([hidden]))) {
    grid-template-columns: minmax(0, 520px);
    margin: 0 auto;
  }
}

.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);
}

/* Badges decorativas — visualmente parecem botão mas NÃO são clicáveis.
   Cursor default deixa claro que não é interativo.
   IMPORTANTE: público alvo (mulheres mais velhas) tende a clicar em
   qualquer coisa que pareça um botão. Tudo que NÃO é botão precisa
   sinalizar isso claramente. */
.plan-badge-top,
.plan-badge-seal,
.urgency-banner,
.bonus-free-tag,
.urgency-badge,
.top-urgency,
.tag,
.final-timer,
.final-option-tag,
.result-eyebrow,
.emotional-tag,
.thanks-receive-header,
.badge:not(.cta),
.seal,
.bonus-tag,
.bonus-meta,
.bonus-value-row,
.bonus-value-row *,
.before-after-badge,
.ba-tag,
.step-num,
.step-badge,
.plan-warning,
.plan-warning *,
.plan-urgency,
.plan-guarantee,
.plan-payment-methods,
.plan-payment-methods *,
.final-trust-line,
.final-trust-line *,
.final-badge,
.final-price-old,
.final-price-now,
.final-price-installments,
.guarantee-content,
.guarantee-content *,
.kit-footer-text,
.bonus-total,
.bonus-total *,
.final-includes,
.final-includes *,
.testimonial,
.testimonial *,
.card-feature-icon,
.card-feature-icon *,
.benefit-card,
.benefit-card *,
.for-whom-card,
.for-whom-card *,
.step-card,
.step-card *,
.ba-card,
.ba-card *,
.card-bonus,
.card-bonus *,
.result-card,
.result-card *,
.emotional-card,
.emotional-card *,
.final-card,
.final-card *,
.guarantee-card,
.guarantee-card * {
  cursor: default;
}

/* Garante que dentro de tudo isso, links/botões reais tenham pointer */
.plan-warning a, .plan-warning button,
.testimonial a, .testimonial button,
.benefit-card a, .benefit-card button,
.for-whom-card a, .for-whom-card button,
.step-card a, .step-card button,
.ba-card a, .ba-card button,
.card-bonus a, .card-bonus button,
.result-card a, .result-card button,
.emotional-card a, .emotional-card button,
.final-card a, .final-card button,
.guarantee-card a, .guarantee-card button,
.card-feature-icon a, .card-feature-icon button {
  cursor: pointer;
}

/* ============================================================
   ETIQUETAS INFORMATIVAS (não botões) — DEV
   Mantém a cor de fundo + outline preto (visual ainda forte),
   MAS muda a silhueta pra retângulo de cantos pouco arredondados
   e REMOVE a sombra sólida. Diferencia visualmente de botões:
   - Botão = pílula (border-radius: 999px) + outline + sombra pop
   - Etiqueta = retângulo (border-radius: 4px) + outline + SEM sombra
   ============================================================ */

/* TÍTULO "● 4 BÔNUS EXCLUSIVOS" / "● TUDO ISSO ESTÁ INCLUSO" */
.badge-big {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "GRÁTIS HOJE" nos bônus — TEXTO PURO verde, SEM container nenhum.
   (Pessoas tentaram clicar nele achando que era botão de resgatar grátis.) */
.bonus-free-tag {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--color-success-strong);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* "● BÔNUS 01-04" nos cards de bônus */
.card-bonus .badge,
.bonus-tag {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "ÚLTIMA CHANCE — A OFERTA TERMINA HOJE!" */
.urgency-banner {
  border-radius: 6px !important;
  box-shadow: none !important;
}

/* "★ PLANO COMPLETO — MAIS VENDIDO" no topo do card */
.plan-badge-top {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "● TODOS OS BÔNUS INCLUSOS" no plano completo */
.plan-badge-seal {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "GUIA DE EDUCAÇÃO CANINA INICIAL" no hero */
.tag {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "★ MAIS VENDIDO" / "⚡ ACESSO IMEDIATO" — selos do hero
   Manter como "selos" arredondados (cara de selo de produto, comum
   em e-commerce). Só reduzo sombra pra não competir com CTA. */
.seal {
  box-shadow: 2px 2px 0 var(--color-outline) !important;
}

/* "● RESULTADO REAL" */
.result-eyebrow {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "✕ PARECE FAMILIAR?" no card emocional */
.emotional-tag {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "✕ SEM O MANUAL" / "✓ COM O MANUAL" nos cards antes/depois */
.ba-tag {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "ANTES ⟷ DEPOIS" badge entre as 2 ilustrações */
.before-after-badge {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "ESSA OFERTA EXPIRA EM 02:30:00" — etiqueta preta no fim
   (não pílula). Mantém o destaque preto + texto branco com countdown
   amarelo, só muda silhueta. */
.final-timer:not(.is-expired) {
  border-radius: 6px !important;
  box-shadow: none !important;
}

/* ===========================================================
   FAIXAS CLICÁVEIS — público clica querendo agir.
   Damos esse comportamento (rolam até botão de checkout próximo).
   =========================================================== */
.top-urgency,
.urgency-banner,
.final-timer {
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.top-urgency:hover,
.urgency-banner:hover,
.final-timer:hover {
  filter: brightness(1.08);
}
.top-urgency:active,
.urgency-banner:active,
.final-timer:active {
  transform: scale(0.985);
}
/* Flash sutil quando rolagem chega no destino — feedback de "cheguei aqui" */
.scroll-target-flash {
  animation: scroll-target-flash 1.1s ease-out;
}
@keyframes scroll-target-flash {
  0%   { box-shadow: 0 0 0 0 rgba(65, 184, 131, 0.55); }
  40%  { box-shadow: 0 0 0 14px rgba(65, 184, 131, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(65, 184, 131, 0); }
}
/* Mantém estado EXPIRADO como pílula vermelha pulsando (é alerta visual) */

/* "✕ OPÇÃO 1" / "✓ OPÇÃO 2" — etiquetas dos cards Duas Opções */
.final-option-tag {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "SSL SEGURO", "GARANTIA 7 DIAS", etc — selos pequenos no fim */
.final-badge {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "ITEM 01" no card do kit */
.card-product .badge {
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* "✓ Compra confirmada" nas páginas de obrigado */
.thanks-receive-header {
  border-radius: 4px !important;
  box-shadow: none !important;
}
.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;
  animation: plan-badge-pulse 1.8s ease-in-out infinite;
}
@keyframes plan-badge-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: var(--shadow-pop-sm), 0 0 0 0 rgba(65, 184, 131, 0.55);
  }
  50% {
    transform: translateX(-50%) scale(1.04);
    box-shadow: var(--shadow-pop-sm), 0 0 0 10px rgba(65, 184, 131, 0);
  }
}

/* Botão principal do Plano Completo — glow verde sutil pulsando */
.plan-featured .cta-primary {
  animation: cta-completo-glow 2.5s ease-in-out infinite;
}
@keyframes cta-completo-glow {
  0%, 100% {
    box-shadow: var(--shadow-pop), 0 0 0 0 rgba(30, 170, 92, 0);
  }
  50% {
    box-shadow: var(--shadow-pop), 0 0 22px 4px rgba(30, 170, 92, 0.45);
  }
}
/* Quando hover, pausa o glow pra não competir com o efeito de translate */
.plan-featured .cta-primary:hover { animation: none; }
.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);
}

/* ===========================================================
   TRANSFORMAÇÃO DESTACADA — Vídeo único pós-Hero
   Prova social imediata, sem precisar rolar muito.
   =========================================================== */
.transformacao-card {
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-pop);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.transformacao-card .testimonial-video {
  max-width: 320px;
  margin: 0 auto var(--space-md);
}
.transformacao-card .testimonial-text {
  text-align: left;
}
@media (max-width: 480px) {
  .transformacao-card { padding: var(--space-lg) var(--space-sm); }
  .transformacao-card .testimonial-video { max-width: 260px; }
}

/* ===========================================================
   BLOCO QUEM FEZ — Carta da Marcela (autora do manual)
   Mobile: foto em cima, texto embaixo (empilhado).
   Desktop ≥720px: foto à esquerda, texto à direita (lado a lado).
   =========================================================== */
.quem-fez-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);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
}
.quem-fez-photo {
  margin: 0;
  display: flex;
  justify-content: center;
}
.quem-fez-photo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2.5px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  background: var(--color-bg-soft);
}
.quem-fez-content { text-align: left; }
.quem-fez-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-success-strong);
  margin-bottom: var(--space-sm);
}
.quem-fez-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  text-wrap: balance;
}
.quem-fez-text {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text-soft);
  margin: 0 0 var(--space-md);
  text-wrap: pretty;
}
.quem-fez-quote {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  padding-left: 0.8rem;
  border-left: 3px solid var(--color-blue, #2d7dec);
}
.quem-fez-quote em {
  font-style: italic;
  font-weight: 500;
}
.quem-fez-sign {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.01em;
}

@media (min-width: 720px) {
  .quem-fez-card {
    grid-template-columns: 240px 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
  }
  .quem-fez-photo img { max-width: 240px; }
}
@media (max-width: 480px) {
  .quem-fez-card { padding: var(--space-lg) var(--space-md); }
  .quem-fez-title { font-size: var(--fs-xl); }
}

/* Card de depoimento com vídeo no topo */
.testimonial-with-video {
  text-align: center;
  padding: var(--space-md);
}
.testimonial-with-video .stars {
  margin-top: var(--space-md);
}
.testimonial-with-video .testimonial-text {
  text-align: left;
}
.testimonial-video {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius);
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  background: #1a1a1a;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
@media (max-width: 480px) {
  .testimonial-video { max-width: 240px; }
}

/* Card de depoimento com FOTO no topo (intercala com videos) */
.testimonial-with-photo {
  text-align: center;
  padding: var(--space-md);
}
.testimonial-with-photo .stars {
  margin-top: var(--space-md);
}
.testimonial-with-photo .testimonial-text {
  text-align: left;
}
img.testimonial-photo {
  width: 100%;
  height: auto;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius);
  border: 2px solid var(--color-outline);
  box-shadow: var(--shadow-pop-sm);
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg-soft);
}
@media (max-width: 480px) {
  img.testimonial-photo { max-width: 240px; }
}
.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;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Quando o timer EXPIRA, o card inteiro entra em modo URGÊNCIA:
   borda vermelha pulsando + halo vermelho. Sem mexer no conteúdo
   pra não ficar "epilético" (evita scale do card inteiro). */
.final-card.is-expiring {
  border-color: var(--color-danger-strong);
  animation: final-card-expiring-pulse 1.4s ease-in-out infinite;
}
@keyframes final-card-expiring-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(230, 57, 70, 0.55),
      var(--shadow-pop-lg);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(230, 57, 70, 0),
      var(--shadow-pop-lg);
  }
}

.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;
}

/* Estado expirado — esconde label/contador, mostra alerta vermelho piscando */
.final-timer-label { margin-right: 0.3rem; }
.final-timer-expired-text { display: none; }

.final-timer.is-expired {
  background: var(--color-danger-strong);
  border-color: var(--color-outline);
  animation: timer-expired-pulse 0.9s ease-in-out infinite;
}
.final-timer.is-expired .final-timer-label,
.final-timer.is-expired #countdown { display: none; }
.final-timer.is-expired .final-timer-expired-text {
  display: inline;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.final-timer.is-expired .final-timer-dot {
  background: #ffffff;
  animation: pulse-dot 0.5s ease-in-out infinite;
}
@keyframes timer-expired-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(230, 57, 70, 0);
  }
}

.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);
}

/* ===========================================================
   FILEIRA VISUAL DE PRODUTOS — card "Duas Opções"
   Manual no centro (maior) + 4 bônus menores nos lados.
   No mobile vira grid 2 colunas com o Manual ocupando linha inteira.
   =========================================================== */
.final-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
  align-items: end;
  gap: 0.6rem;
  max-width: 720px;
  margin: var(--space-lg) auto var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 2px dashed var(--color-border-soft);
  border-bottom: 2px dashed var(--color-border-soft);
}
.final-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  position: relative;
}
.final-product img {
  width: 100%;
  max-width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.12));
}
.final-product-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  margin: 0 0 0.25rem;
  letter-spacing: 0;
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-product-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  line-height: 1.1;
}
.final-product-prices s {
  color: var(--color-danger);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-family: var(--font-display);
}
.final-product-free {
  color: var(--color-success-strong);
  font-size: 0.95rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* Manual = produto principal, MAIOR e destacado */
.final-product-main img {
  max-width: 230px;
}
.final-product-main .final-product-name {
  font-size: 0.82rem;
}
.final-product-main .final-product-free {
  font-size: 1rem;
}
@media (max-width: 720px) {
  .final-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    padding: var(--space-md) 0;
  }
  .final-product img { max-width: 95px; }
  .final-product-main {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }
  .final-product-main img { max-width: 240px; }
  .final-product-name { font-size: 0.7rem; min-height: 2.1em; }
}
@media (max-width: 380px) {
  .final-product img { max-width: 85px; }
  .final-product-main img { max-width: 200px; }
}
.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; }
}

/* Cachorrão animado da página 404 (mesmo do hero) */
.thanks-404-dog {
  width: 100%;
  max-width: 340px;
  margin: 0 auto var(--space-md);
  animation: thanks-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.thanks-404-animation {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 480px) {
  .thanks-404-dog { max-width: 260px; }
}

.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);
}

/* ⚠️ STICKY CTA mobile DESATIVADO — pesquisa de UX indicou que
   mostrar o preço antes da pessoa absorver a página pode prejudicar
   a conversão pro nosso público (mulheres 35+ mais conservadoras
   em compras impulsivas). Pra reativar: descomenta o bloco abaixo. */
/*
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}
*/

/* =========================================================
   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); }
}

/* ===========================================================
   ADIÇÕES 29/05 — Timer em blocos em cima do card de preço
   + selo de valor riscado dos bônus na lista do card
   =========================================================== */

/* Scroll suave geral (pra CTAs que apontam pra #planos) */
html { scroll-behavior: smooth; }

/* Quando o scroll cai numa section linkada (#planos, #faq, etc.),
   dá um respiro de 1rem no topo pro título não colar no topo do viewport. */
section[id], header[id] { scroll-margin-top: 1rem; }

/* Lista de bônus no card de preço — layout em 3 colunas:
   [#N azul] [nome do bônus]              [valor riscado vermelho]
   "#N" puxa o olho, valor riscado fica alinhado à direita sem competir. */
.list-check-bonus li.is-bonus {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.list-check-bonus .bonus-num {
  color: var(--color-blue, #2b7fff);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.list-check-bonus .bonus-name {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
}
.bonus-stamp {
  font-weight: 700;
  color: #c1121f;
  font-family: var(--font-display);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;   /* empurra pro canto direito */
}
.list-check-bonus li {
  line-height: 1.5;
}

/* ===========================================================
   CARD DO PLANO — Reforços de conversão pra tráfego frio
   1) Prova social no topo  2) Risco zero abaixo do CTA
   3) Trust badges (acesso imediato/seguro/vitalício)
   4) Foto Marcela + criador
   =========================================================== */

/* (moldura .plan-kit-frame removida em 01/06 — mockup com transparência fica melhor sem moldura) */

/* Badge "4 BÔNUS EXCLUSIVOS" com lottie de presente do lado esquerdo.
   Lottie é 32x32 mas exibido um pouco maior pra dar destaque. */
.badge-with-lottie {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.badge-lottie {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 480px) {
  .badge-lottie { width: 30px; height: 30px; }
}

/* 2) REFORÇO DE REEMBOLSO logo abaixo do CTA — selo SVG + texto */
.plan-risk-zero {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  background: #f0fdf4;
  border: 2px solid #41b883;
  border-radius: var(--radius);
  text-align: left;
}
.plan-risk-seal {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.plan-risk-text {
  font-size: var(--fs-sm);
  line-height: 1.4;
  color: var(--color-text);
  text-wrap: pretty;
}
.plan-risk-text strong { font-weight: 700; }

/* 3) TRUST BADGES — 3 ícones em fileira (acesso/seguro/vitalício) */
.plan-trust-badges {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  border-top: 1px dashed rgba(0,0,0,0.12);
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.plan-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
  color: var(--color-text);
}
.plan-trust-badge svg {
  width: 22px;
  height: 22px;
  color: var(--color-cta, #1eaa5c);
}
.plan-trust-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

/* 4) FOTO MARCELA + "Criado pela Marcela" */
.plan-creator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.plan-creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--color-outline);
  box-shadow: 2px 2px 0 var(--color-outline);
}
.plan-creator strong { font-weight: 700; font-family: var(--font-display); }

@media (max-width: 480px) {
  .plan-risk-zero { padding: var(--space-sm); gap: var(--space-xs); }
  .plan-risk-seal { width: 48px; height: 48px; }
  .plan-risk-text { font-size: var(--fs-xs); }
  .plan-trust-badge span { font-size: 0.65rem; }
  .plan-trust-badge svg { width: 20px; height: 20px; }
}

/* ===========================================================
   Timer em BLOCOS (HORAS:MIN:SEG) — em cima do card de preço
   Card branco com outline preto + sombra pop (design system).
   Embaixo, 3 mini-cards vermelhos com números brancos.
   Quando expira, vira fundo vermelho piscando full-card.
   =========================================================== */
.final-timer.final-timer-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  max-width: 32rem;
  margin: 0 auto var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-card-bg);
  border: var(--outline-medium);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  cursor: pointer;
}
/* Esconde elementos do timer "antigo" (Duas Opções) que herdam .final-timer */
.final-timer.final-timer-blocks .final-timer-dot,
.final-timer.final-timer-blocks .final-timer-label,
.final-timer.final-timer-blocks #countdown,
.final-timer.final-timer-blocks .final-timer-expired-text { display: none; }

.final-timer-blocks .timer-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--color-text);
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
}
.final-timer-blocks .timer-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.final-timer-blocks .timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e63946;
  border: 2.5px solid #1a1a1a;
  border-radius: var(--radius);
  padding: var(--space-xs) var(--space-sm);
  min-width: 78px;
  box-shadow: 3px 3px 0 #1a1a1a;
}
.final-timer-blocks .timer-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.05;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.final-timer-blocks .timer-block-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  color: #ffffff;
  letter-spacing: 1.2px;
  margin-top: 2px;
  opacity: 0.9;
}
.final-timer-blocks .timer-sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-text);
  line-height: 1;
  padding-bottom: 18px;
}

@media (max-width: 480px) {
  .final-timer.final-timer-blocks { padding: var(--space-sm) var(--space-md); }
  .final-timer-blocks .timer-block { min-width: 64px; padding: 6px var(--space-xs); }
  .final-timer-blocks .timer-num { font-size: 1.9rem; }
  .final-timer-blocks .timer-block-label { font-size: 0.6rem; }
  .final-timer-blocks .timer-sep { font-size: 1.6rem; padding-bottom: 16px; }
}

/* Estado EXPIRADO — fundo vermelho piscando full-card + texto branco */
.final-timer.final-timer-blocks.is-expired {
  background: #e63946;
  border-color: #1a1a1a;
  animation: timer-flash-red 0.9s ease-in-out infinite;
  padding: var(--space-md) var(--space-lg);
}
.final-timer.final-timer-blocks.is-expired .timer-label,
.final-timer.final-timer-blocks.is-expired .timer-blocks { display: none; }
.final-timer.final-timer-blocks.is-expired .timer-expired-text {
  display: inline-block;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xl);
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
.final-timer.final-timer-blocks .timer-expired-text { display: none; }

@keyframes timer-flash-red {
  0%, 100% {
    background: #e63946;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6), 3px 3px 0 #1a1a1a;
  }
  50% {
    background: #c1121f;
    box-shadow: 0 0 0 12px rgba(230, 57, 70, 0), 3px 3px 0 #1a1a1a;
  }
}
