/* ==========================================================================
   FIGURINHAS COPA 2026 — Design System Premium
   ========================================================================== */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta — Cores oficiais Copa 2026 (EUA/Canadá/México) */
  --color-bg: #0a0f1e;
  --color-bg-light: #111729;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #f0f4ff;
  --color-text-muted: rgba(240, 244, 255, 0.65);

  --color-primary: #16a34a;      /* Verde Brasil */
  --color-secondary: #fbbf24;    /* Amarelo Brasil */
  --color-accent: #06b6d4;       /* Ciano (Copa 2026 oficial) */
  --color-purple: #a855f7;
  --color-pink: #ec4899;
  --color-red: #ef4444;

  /* Gradientes */
  --gradient-brand: linear-gradient(135deg, #16a34a 0%, #fbbf24 50%, #06b6d4 100%);
  --gradient-purple: linear-gradient(135deg, #a855f7, #06b6d4);
  --gradient-red: linear-gradient(135deg, #ef4444, #f97316);
  --gradient-bg: radial-gradient(ellipse at top, #1e0533 0%, #0a0f1e 50%, #0a1a1a 100%);

  /* Espaçamento */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-glow-green: 0 0 40px rgba(22, 163, 74, 0.4);
  --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.4);
  --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.4);
}

html {
  scroll-behavior: smooth;
  background: #0a0f1e;
  min-height: 100%;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  width: 100%;
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Fundo extra que cobre toda a viewport, mesmo no zoom out */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-bg);
  z-index: -2;
  pointer-events: none;
}

/* Esconde cursor padrão em mobile */
@media (hover: none) {
  body { cursor: auto; }
  .custom-cursor, .cursor-trail { display: none; }
}

/* ── CURSOR ── */
.custom-cursor {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(6,182,212,0.8) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out;
  mix-blend-mode: screen;
  will-change: transform;
}
.cursor-trail {
  width: 8px;
  height: 8px;
  background: rgba(168, 85, 247, 0.7);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: left 0.18s ease-out, top 0.18s ease-out;
  filter: blur(2px);
}

/* ── PARTÍCULAS ── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gradient-brand);
  z-index: 10000;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.7);
  will-change: transform;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: clamp(150px, 18vw, 260px);
  background:
    radial-gradient(ellipse at 24% 0%, rgba(6, 182, 212, 0.22) 0%, rgba(6, 182, 212, 0.08) 32%, transparent 66%),
    radial-gradient(ellipse at 78% 10%, rgba(22, 163, 74, 0.22) 0%, rgba(251, 191, 36, 0.09) 36%, transparent 70%),
    linear-gradient(180deg, rgba(10, 15, 30, 0) 0%, rgba(10, 15, 30, 0.55) 58%, rgba(10, 15, 30, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Blobs decorativos */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: morph 15s ease-in-out infinite;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -150px;
  right: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: 100px;
  left: -100px;
  animation-delay: -5s;
}
.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--color-secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
  33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(20px, -20px) scale(1.05); }
  66% { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; transform: translate(-20px, 20px) scale(0.95); }
}

/* Emojis flutuantes */
.floating-emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.4;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
  animation: floatY 8s ease-in-out infinite;
}
.float-1 { top: 15%; left: 10%; animation-delay: 0s; }
.float-2 { top: 25%; right: 15%; animation-delay: -2s; font-size: 3rem; }
.float-3 { bottom: 30%; left: 8%; animation-delay: -4s; font-size: 2rem; }
.float-4 { bottom: 20%; right: 10%; animation-delay: -6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  position: relative;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}
.logo-text strong {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-nav {
  background: var(--gradient-brand);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.5);
}

/* Hero content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 5;
}

.badge-hot {
  display: inline-block;
  background: var(--gradient-red);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}
.title-small {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  margin-top: 12px;
  opacity: 0.8;
  text-transform: lowercase;
}
.price-highlight {
  display: inline-block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4em;
  text-shadow: 0 0 60px rgba(22, 163, 74, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(22, 163, 74, 0.5)); }
  to { filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.8)); }
}

/* Caixa de preço destacada do Hero */
.hero-price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(6, 182, 212, 0.08));
  border: 2px solid rgba(22, 163, 74, 0.4);
  border-radius: var(--radius-lg);
  margin: var(--space-sm) 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.2),
              0 0 60px rgba(6, 182, 212, 0.1);
  position: relative;
}
.hero-price-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-brand);
  border-radius: inherit;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.3;
}
.hero-price-old {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.hero-price-old s {
  color: #f87171;
  font-weight: 600;
}
.hero-price-now {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(22, 163, 74, 0.4));
  line-height: 1;
}
.hp-currency { font-size: 1.5rem; }
.hp-value { font-size: clamp(3rem, 7vw, 4.5rem); }
.hp-cents { font-size: 1.8rem; }
.hero-price-info {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 4px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Destaque do que está incluso */
.hero-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: var(--space-md) auto;
}
.include-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.05);
}
.include-tag:hover {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.2);
}

/* (mantém estilos antigos da urgência caso queira reativar depois) */
.urgency-box {
  max-width: 450px;
  width: 100%;
  margin: var(--space-md) auto;
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.urgency-text {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: #fbbf24;
}
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width 2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.7);
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* CTA principal */
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gradient-brand);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(22, 163, 74, 0.4),
              0 0 60px rgba(6, 182, 212, 0.2);
  margin-top: var(--space-md);
}
.btn-cta-main::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-brand);
  border-radius: inherit;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.btn-cta-main:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 60px rgba(22, 163, 74, 0.6),
              0 0 100px rgba(6, 182, 212, 0.4);
}
.btn-cta-main:hover::before { opacity: 1; }
.btn-cta-main svg {
  transition: transform 0.3s ease;
}
.btn-cta-main:hover svg { transform: translateX(5px); }

/* Botão CTA do Hero — destaque extra */
.btn-cta-hero {
  margin-top: var(--space-sm);
  animation: pulseBtn 2.5s ease-in-out infinite;
  /* Garante que o botão fique sempre visível */
  opacity: 1 !important;
  visibility: visible !important;
}
@keyframes pulseBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.btn-cta-hero:hover {
  animation: none;
}

.trust-line {
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-line strong { color: var(--color-secondary); }

/* Seta branca pulsante de scroll */
.scroll-arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 5;
  animation: arrowBounce 1.6s ease-in-out infinite;
  transition: color 0.3s ease;
}
.scroll-arrow-down:hover {
  color: white;
}
.scroll-arrow-down svg {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Faixa de bandeiras passando infinito (marquee) */
.flags-marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  margin-top: var(--space-md);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(22, 163, 74, 0.06) 20%,
    rgba(6, 182, 212, 0.06) 50%,
    rgba(22, 163, 74, 0.06) 80%,
    transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
  /* Máscaras de fade nas laterais */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.flags-track {
  display: inline-flex;
  gap: 18px;
  font-size: 1.4rem;
  white-space: nowrap;
  animation: flagsSlide 40s linear infinite;
  filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.2));
}
.flags-track span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.flags-track:hover {
  animation-play-state: paused;
}
@keyframes flagsSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: floatY 3s ease-in-out infinite;
  z-index: 5;
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: wheelMove 1.5s ease-in-out infinite;
}
@keyframes wheelMove {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: clamp(44px, 5vw, 68px) 0;
  position: relative;
}
.section-title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.overline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto 12px;
  padding: 9px 16px;
  border: 1px solid rgba(6, 182, 212, 0.38);
  border-radius: var(--radius-full);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(22, 163, 74, 0.1)),
    rgba(10, 15, 30, 0.72);
  box-shadow:
    0 0 28px rgba(6, 182, 212, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dffbff;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(6, 182, 212, 0.65);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.overline::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-brand);
  opacity: 0.16;
  filter: blur(12px);
  z-index: -1;
}

/* ── PROBLEMA (Redesign) ── */
.section .overline[data-aos],
.section .section-title[data-aos],
.section .section-subtitle[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.clean-page .problema,
.clean-page .numeros,
.clean-page .depoimentos,
.clean-page .cta-final {
  display: none;
}

.clean-page .section {
  padding: clamp(38px, 4.5vw, 58px) 0;
}

.clean-page .section-subtitle {
  max-width: 620px;
}

.clean-page .oferta-card {
  margin-top: clamp(28px, 4vw, 40px);
}

.problema {
  background:
    radial-gradient(ellipse at top, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.04) 50%, transparent 100%);
  padding-top: clamp(36px, 4vw, 54px);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.problem-card {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(249, 115, 22, 0.03)),
    rgba(13, 18, 30, 0.7);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444, #f97316, transparent);
  opacity: 0.6;
}
.problem-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow:
    0 25px 70px rgba(239, 68, 68, 0.25),
    0 0 60px rgba(239, 68, 68, 0.15);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.05)),
    rgba(13, 18, 30, 0.85);
}

/* Número grande de fundo "01", "02", "03" */
.problem-card-bg {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: 'Anton', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(239, 68, 68, 0.08);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.problem-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.5));
  position: relative;
  z-index: 1;
  animation: shakeIcon 4s ease-in-out infinite;
}
@keyframes shakeIcon {
  0%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(0deg); }
  94% { transform: rotate(-8deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-4deg); }
}
.problem-card:nth-child(2) .problem-icon { animation-delay: 1.5s; }
.problem-card:nth-child(3) .problem-icon { animation-delay: 3s; }

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fca5a5;
  position: relative;
  z-index: 1;
}

/* Valor destacado */
.problem-amount {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.4));
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.problem-amount span {
  display: block;
  font-size: 0.45em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: initial;
  color: rgba(252, 165, 165, 0.7);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.problem-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.problem-conclusion {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.problem-conclusion .highlight {
  display: inline-block;
  font-size: 1.35rem;
  margin-top: var(--space-md);
  color: var(--color-text);
  font-weight: 700;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-full);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.15);
}

/* ── SOLUÇÃO ── */
.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}
.solucao-image-wrap {
  position: relative;
  perspective: 1500px;
}
.solucao-image-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
}
.solucao-image {
  position: relative;
  padding: var(--space-md);
  background: linear-gradient(135deg, #16a34a 0%, #fbbf24 50%, #06b6d4 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  z-index: 1;
}

/* Versão com imagem real do PDF */
.solucao-image-real {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5),
              0 0 60px rgba(22, 163, 74, 0.2);
  transform-style: preserve-3d;
  z-index: 1;
  border: 3px solid;
  border-image: linear-gradient(135deg, #16a34a, #fbbf24, #06b6d4) 1;
}
.solucao-image-real img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
.badge-corner {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-red);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
  z-index: 10;
}
.figurinhas-mockup {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fig-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.fig {
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.2);
}
.fig::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
}

.solucao-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.check-list .check {
  flex-shrink: 0;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(22, 163, 74, 0.6));
}

/* ── PROVA REAL ── */
.prova-real {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.05) 50%, transparent 100%);
}
.provas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.provas-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 968px) {
  .provas-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .provas-grid-4 {
    grid-template-columns: 1fr;
  }
}
.prova-card {
  padding: var(--space-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}
.prova-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}
.prova-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Versão com imagem real */
.prova-img-real {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
}
.prova-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.prova-card:hover .prova-img-real img {
  transform: scale(1.08);
}
.prova-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.prova-overlay strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.prova-overlay small {
  font-size: 0.8rem;
  opacity: 0.9;
}
.prova-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
}
.prova-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 2;
  position: relative;
}
.prova-emoji {
  font-size: 3rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
.prova-content strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.prova-content small {
  font-size: 0.85rem;
  opacity: 0.9;
}
.prova-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0 var(--space-xs);
}

/* ── COMO FUNCIONA ── */
/* Carrosseis de prova real e WhatsApp */
.carousel-swiper {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 44px 22px;
  position: relative;
  overflow: hidden;
}

.provas-grid.carousel-swiper,
.prints-grid.carousel-swiper {
  display: block;
  gap: 0;
}

.carousel-swiper .swiper-wrapper {
  align-items: stretch;
}

.carousel-swiper .swiper-slide {
  height: auto;
}

.carousel-swiper .prova-card,
.carousel-swiper .print-card {
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(22, 163, 74, 0.14)),
    rgba(10, 15, 30, 0.9);
  color: #e8fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 0 26px rgba(6, 182, 212, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
  border-color: rgba(6, 182, 212, 0.8);
  background:
    linear-gradient(135deg, rgba(22, 163, 74, 0.34), rgba(6, 182, 212, 0.24)),
    rgba(10, 15, 30, 0.95);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.carousel-next:hover {
  transform: translateY(-50%) translateX(2px);
}

@media (max-width: 768px) {
  .carousel-swiper {
    max-width: 430px;
    padding: 4px 34px 20px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }

  .print-message {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .carousel-swiper {
    padding-left: 28px;
    padding-right: 28px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  position: relative;
}
.step-line {
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-purple));
  z-index: 0;
  opacity: 0.3;
}
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow-cyan);
}
.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}
.step-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}
.step-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ── NÚMEROS ── */
.numeros {
  background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}
.numero-card {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.numero {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.numero-prefix,
.numero-suffix {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.numero-suffix {
  font-size: 0.7em;
}
.numero-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ── DEPOIMENTOS ── */
.depo-swiper {
  padding: var(--space-md) 0 var(--space-xl);
}
.depo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}
.stars {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}
.depo-card p {
  flex: 1;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
}
.depo-author strong {
  display: block;
  font-size: 0.95rem;
}
.depo-author small {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}
.swiper-pagination-bullet {
  background: var(--color-accent) !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  width: 24px;
  border-radius: 4px;
}

/* ── APRESENTADOR ── */
.apresentador-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: center;
}
.apresentador-img-wrap {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}
.apresentador-img-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-brand);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: glow 3s ease-in-out infinite alternate;
}
.apresentador-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #16a34a, #fbbf24, #06b6d4) padding-box,
              linear-gradient(135deg, #16a34a, #fbbf24, #06b6d4) border-box;
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.3);
}
.apresentador-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Fallback quando imagem não carrega ainda */
img {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1729 100%);
}
img:not([src]), img[src=""] {
  visibility: hidden;
}
.avatar-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  border-radius: 50%;
}
.apresentador-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: var(--space-sm) 0 var(--space-md);
  text-transform: uppercase;
}
.apresentador-content p {
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.apresentador-content strong {
  color: var(--color-text);
}

/* ── OFERTA ── */
.oferta {
  background: linear-gradient(180deg, transparent 0%, rgba(22, 163, 74, 0.08) 50%, transparent 100%);
}
.oferta-card {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(6, 182, 212, 0.08));
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(22, 163, 74, 0.3),
              inset 0 0 40px rgba(22, 163, 74, 0.05);
}
.oferta-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-brand);
  border-radius: inherit;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}
.oferta-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-red);
  color: white;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 30px rgba(239, 68, 68, 0.5);
}
.oferta-header h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.oferta-header p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.oferta-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-md) 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.oferta-item {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}
.oferta-price {
  margin: var(--space-lg) 0;
}
.price-old {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.price-old s {
  color: #f87171;
}
.price-now {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Anton', sans-serif;
  filter: drop-shadow(0 0 30px rgba(22, 163, 74, 0.4));
}
.price-currency { font-size: 2rem; }
.price-value { font-size: 6rem; line-height: 1; font-weight: 900; }
.price-cents { font-size: 2.5rem; }
.price-info {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.btn-cta-oferta {
  display: inline-block;
  width: 100%;
  padding: 22px 32px;
  background: var(--gradient-brand);
  color: white;
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 50px rgba(22, 163, 74, 0.5),
              0 0 80px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-cta-oferta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.btn-cta-oferta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 70px rgba(22, 163, 74, 0.7),
              0 0 120px rgba(6, 182, 212, 0.5);
}
.btn-cta-oferta:hover::before { left: 100%; }

.oferta-payments {
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.payment-icons {
  font-size: 1.5rem;
  margin-top: 8px;
  letter-spacing: 8px;
}

.garantia {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-align: left;
}
.garantia-seal {
  font-size: 3rem;
  filter: drop-shadow(0 0 15px rgba(22, 163, 74, 0.5));
}
.garantia strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.garantia small {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.oferta-urgency {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 1rem;
  color: var(--color-secondary);
}
.oferta-urgency strong {
  color: #fbbf24;
  font-size: 1.1em;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--color-accent);
}
.faq-item[open] {
  background: rgba(6, 182, 212, 0.05);
  border-color: var(--color-accent);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  margin-top: var(--space-xs);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-final {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.cta-final h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  line-height: 1.1;
}
.cta-final p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.btn-final {
  margin-bottom: var(--space-sm);
}
.cta-final small {
  display: block;
  margin-top: var(--space-sm);
  color: var(--color-secondary);
  font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-small {
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   VÍDEO DE PROVA — YouTube Shorts Embed
============================================================ */
.video-prova {
  background:
    radial-gradient(ellipse at top, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.04) 35%, transparent 68%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.55) 0%, rgba(239, 68, 68, 0.04) 42%, transparent 100%);
  padding-top: clamp(36px, 4vw, 56px);
}

.video-wrapper {
  max-width: 420px;
  margin: var(--space-lg) auto 0;
  position: relative;
}

.video-glow {
  position: absolute;
  inset: -30px;
  background: linear-gradient(135deg, #ef4444, #f97316, #fbbf24);
  border-radius: var(--radius-xl);
  filter: blur(50px);
  opacity: 0.5;
  z-index: 0;
  animation: glow 3s ease-in-out infinite alternate;
}

.video-frame {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-xl);
  padding: 14px;
  border: 2px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 80px rgba(239, 68, 68, 0.2);
  z-index: 1;
}

.video-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-red);
  color: white;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}
.video-aspect iframe,
.video-aspect .video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-aspect .video-player {
  display: block;
  background: #000;
  object-fit: cover;
}

/* Comparação dramática */
.video-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-item {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.comparison-bad {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}
.comparison-good {
  border-color: rgba(22, 163, 74, 0.5);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.3);
}
.comparison-item:hover {
  transform: translateY(-4px);
}

.comp-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.comp-content small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.comp-content strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 6px;
}
.comparison-bad .comp-content strong {
  color: #ef4444;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.6);
}
.comparison-good .comp-content strong {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.comp-content span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.comparison-vs {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-cta-text {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.video-cta-text strong {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ============================================================
   PRINTS WHATSAPP — Prova Social
============================================================ */
.prints-section {
  background: linear-gradient(180deg, transparent 0%, rgba(22, 163, 74, 0.04) 50%, transparent 100%);
}

.prints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.print-card {
  background: #0d1418;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4),
              0 0 30px rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.15);
  transition: all 0.3s ease;
}
.print-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 50px rgba(22, 163, 74, 0.25);
  border-color: rgba(22, 163, 74, 0.4);
}

.print-header {
  background: #1f2c34;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.print-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.print-info {
  flex: 1;
  min-width: 0;
}
.print-info strong {
  display: block;
  font-size: 0.95rem;
  color: #e9edef;
  line-height: 1.2;
}
.print-info small {
  font-size: 0.75rem;
  color: #8696a0;
}

.print-message {
  padding: 14px 12px;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.03"/><circle cx="70" cy="60" r="1.5" fill="white" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.03"/></svg>')
    #0b141a;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  min-height: 280px;
}

/* Bolha do CLIENTE (entrada) — cinza escuro à ESQUERDA */
.msg-in {
  align-self: flex-start;
  max-width: 80%;
  background: #1f2c34;
  color: #e9edef;
  padding: 7px 10px 5px;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  position: relative;
}
.msg-in p {
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 0;
  word-wrap: break-word;
}
.msg-in p strong {
  color: #fff7b0;
  font-weight: 700;
}

/* Bolha do VENDEDOR (resposta sua) — VERDE à DIREITA */
.msg-out {
  align-self: flex-end;
  max-width: 80%;
  background: #005c4b;
  color: #e9edef;
  padding: 7px 10px 5px;
  border-radius: 8px;
  border-top-right-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  margin-top: 2px;
}
.msg-out p {
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 0;
  word-wrap: break-word;
}
.msg-out p strong {
  color: #fff7b0;
  font-weight: 700;
}

/* Horário (e checkmarks azuis quando "out") */
.msg-time {
  display: inline-block;
  font-size: 0.65rem;
  color: #8696a0;
  margin-left: 6px;
  margin-top: 2px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.msg-out .msg-time {
  color: #53bdeb;
}

.prints-disclaimer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================================
   FLOATING CTA MOBILE — Botão fixo no rodapé do mobile
============================================================ */
.floating-cta-mobile {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--gradient-brand);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.6),
              0 0 40px rgba(6, 182, 212, 0.4);
  animation: floatingPulse 2s ease-in-out infinite;
}
@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(22, 163, 74, 0.6), 0 0 40px rgba(6, 182, 212, 0.4); }
  50%      { box-shadow: 0 8px 40px rgba(22, 163, 74, 0.9), 0 0 60px rgba(6, 182, 212, 0.6); }
}

.floating-cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-cta-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.floating-cta-text {
  flex: 1;
  text-align: left;
  line-height: 1.2;
}
.floating-cta-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.floating-cta-text small {
  font-size: 0.7rem;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.36),
              0 0 0 7px rgba(37, 211, 102, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.04);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.45),
              0 0 0 9px rgba(37, 211, 102, 0.12);
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-float-icon path:first-child {
  fill: rgba(255, 255, 255, 0.98);
}

.whatsapp-float-icon path:last-child {
  fill: #16a34a;
}

.whatsapp-float-label {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Compacta a cadencia entre chamadas, provas e blocos de venda */
.problem-grid,
.solucao-grid,
.provas-grid,
.steps-container,
.video-wrapper,
.video-comparison,
.prints-grid {
  margin-top: clamp(20px, 3vw, 32px);
}

.problem-conclusion,
.video-cta-text,
.prints-disclaimer,
.oferta-urgency {
  margin-top: clamp(18px, 2.5vw, 28px);
}

/* ============================================================
   RESPONSIVO — MOBILE FIRST FOCUS
============================================================ */
@media (max-width: 968px) {
  .solucao-grid,
  .apresentador-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .steps-container {
    grid-template-columns: 1fr;
  }
  .step-line { display: none; }

  .prints-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  /* Mostra botão flutuante apenas no mobile */
  body {
    background-attachment: scroll;
  }

  .floating-cta-mobile { display: block; }

  .whatsapp-float {
    right: 14px;
    bottom: 92px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    gap: 0;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4),
                0 0 0 6px rgba(37, 211, 102, 0.1);
  }

  .whatsapp-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  /* Reduz padding de sections */
  .section {
    padding: 34px 0;
  }

  /* Hero com mais respiro no mobile — não espremer */
  .hero {
    min-height: 92vh;
    min-height: 92svh;
    padding-top: 12px;
    padding-bottom: 14px;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
  }
  .hero::after {
    height: 190px;
  }
  .hero > * {
    min-width: 0;
    max-width: 100%;
  }
  .hero-content {
    flex: 0 0 auto;
    width: min(100%, 360px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    padding: 28px 0 32px;
    justify-content: flex-start;
    gap: 18px;
    align-self: center;
  }
  .hero-content > * {
    margin-top: 0;
  }
  .hero-title {
    width: 100%;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    line-height: 1;
    margin-bottom: 0;
  }
  .hero-title .title-small {
    font-size: 0.32em;
    margin-top: 6px;
  }
  .hero-subtitle {
    width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0;
    padding: 0 4px;
  }
  .badge-hot {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 0;
  }
  .hero-price-box {
    margin: 4px 0;
    padding: 20px 28px;
  }
  .btn-cta-hero {
    max-width: 100%;
    margin-top: 4px !important;
    padding: 18px 22px !important;
    font-size: 1rem !important;
  }
  .trust-line {
    width: 100%;
    max-width: 340px;
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.78rem;
    gap: 6px;
  }
  .hero-includes {
    margin: 10px auto 0;
    gap: 6px;
  }
  .include-tag {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .flags-marquee {
    padding: 10px 0;
    margin-top: 12px;
  }
  .flags-track {
    font-size: 1.2rem;
    gap: 12px;
    animation-duration: 30s;
  }
  .scroll-indicator { display: none; }

  .section-title {
    margin-bottom: 12px;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .overline {
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .problem-grid,
  .solucao-grid,
  .provas-grid,
  .steps-container,
  .video-wrapper,
  .video-comparison,
  .prints-grid {
    margin-top: 18px;
  }
  .problem-conclusion,
  .video-cta-text,
  .prints-disclaimer,
  .oferta-urgency {
    margin-top: 16px;
  }
  .video-prova {
    padding-top: 28px;
  }

  /* Convite mobile bem compacto */
  .scroll-invite {
    padding: 12px 16px 16px;
    gap: 6px;
  }
  .scroll-invite-text {
    font-size: 0.72rem;
  }
  .scroll-arrow {
    width: 34px;
    height: 34px;
  }

  /* Problema mais colado no Hero no mobile */
  .problema {
    padding-top: 28px;
    padding-bottom: 34px;
  }
  .problem-card {
    padding: var(--space-md);
  }
  .problem-amount {
    font-size: 2rem;
  }
  .problem-card-bg {
    font-size: 5rem;
    top: -4px;
    right: 10px;
  }
  .problem-card h3 {
    font-size: 1.15rem;
  }
  .problem-conclusion .highlight {
    font-size: 1.05rem;
    padding: 10px 18px;
  }
  .floating-emoji { font-size: 1.4rem; opacity: 0.25; }

  /* Topbar bem compacta no mobile */
  .topbar {
    padding: 8px 0;
    gap: 10px;
    width: min(100%, 390px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    align-self: center;
  }
  .logo {
    min-width: 0;
  }
  .logo-text {
    font-size: 0.82rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .logo-icon {
    font-size: 1.2rem;
  }

  .btn-nav {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  /* Container mobile */
  .container {
    padding: 0 var(--space-sm);
  }

  /* Cards problemas mobile */
  .problem-grid {
    gap: 14px;
  }
  .problem-card {
    padding: var(--space-md);
  }

  /* Solução mobile */
  .solucao-content h3 {
    font-size: 1.4rem;
  }
  .check-list li {
    font-size: 0.95rem;
  }

  /* Steps mobile */
  .step-card {
    padding: var(--space-md);
  }
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  /* Números mobile */
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .numero-card {
    padding: var(--space-md) var(--space-sm);
  }

  /* Depoimentos mobile */
  .depo-card {
    padding: var(--space-md);
  }

  /* Apresentador mobile */
  .apresentador-img-wrap {
    max-width: 220px;
  }

  /* Oferta mobile */
  .oferta-card {
    padding: var(--space-lg) var(--space-md);
  }
  .price-value { font-size: 4.5rem; }
  .price-currency { font-size: 1.5rem; }
  .price-cents { font-size: 2rem; }
  .oferta-includes {
    max-width: 100%;
  }
  .oferta-item {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  /* Botões grandes para toque (mínimo 48px) */
  .btn-cta-main,
  .btn-cta-oferta {
    padding: 18px 24px;
    font-size: 1rem;
    min-height: 56px;
    width: 100%;
    justify-content: center;
  }

  /* FAQ mobile */
  .faq-item summary {
    font-size: 0.98rem;
  }

  /* Garantia mobile */
  .garantia {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Esconde cursor custom no mobile */
  body { cursor: auto; padding-bottom: 80px; }
  .custom-cursor, .cursor-trail { display: none; }

  /* CTA Final precisa de margem extra pelo botão flutuante */
  .cta-final { padding-bottom: 100px; }
  .footer { padding-bottom: 100px; }
}

@media (max-width: 768px) {
  /* Vídeo mais compacto no mobile */
  .video-wrapper {
    max-width: 340px;
  }
  .video-comparison {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .comparison-vs {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .comp-content strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
  }
  .hero-content {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
  }
  .hero-title {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 0.95;
  }
  .hero-title .price-highlight {
    font-size: 1.3em;
  }
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }
  .price-value { font-size: 3.8rem; }
  .hero-price-box {
    width: 100%;
    max-width: 310px;
    padding: 18px 22px;
  }
  .btn-cta-hero {
    padding: 14px 16px !important;
    font-size: 0.88rem !important;
  }

  /* Vídeo no mobile pequeno */
  .video-wrapper {
    max-width: 100%;
  }
  .video-frame {
    padding: 10px;
  }

  /* Print mobile */
  .print-message p {
    font-size: 0.88rem;
    max-width: 90%;
  }

  /* Floating CTA mais compacto */
  .floating-cta-text strong {
    font-size: 0.88rem;
  }
  .floating-cta-text small {
    font-size: 0.65rem;
  }
  .floating-cta-icon {
    font-size: 1.5rem;
  }
}

/* Esconde botão flutuante quando estiver na seção oferta */
@media (max-width: 768px) {
  body.hide-floating .floating-cta-mobile {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
}
