/* ============================================================
   LMV STUDIO — style.css
   Paleta: Preto #0a0a0a, Laranja #FF5C00, Branco #FFFFFF, 
           Laranja claro #FF8A40, Cinza escuro #141414
   Fontes: Barlow Condensed (display), Barlow (títulos), Inter (corpo)
   ============================================================ */

:root {
  --orange: #FF5C00;
  --orange-light: #FF8A40;
  --orange-glow: rgba(255, 92, 0, 0.18);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.6);
  --white-faint: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

.btn-instagram {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            
            background-color: #000000;
            color: #ffffff;
            border: 2px solid #000000;
            
            padding: 10px 24px;
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Efeito Hover: Inverte as cores */
        .btn-instagram:hover {
            background-color: #ffffff;
            color: #000000;
        }

        /* Opcional: Adicionando um ícone simples via SVG */
        .btn-instagram svg {
            margin-right: 10px;
            fill: currentColor; /* Faz o ícone seguir a cor do texto */
        }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.22s !important; }
.delay-3 { transition-delay: 0.34s !important; }
.delay-4 { transition-delay: 0.46s !important; }
.delay-5 { transition-delay: 0.58s !important; }

/* ─── HIGHLIGHT ──────────────────────────────────────────── */
.highlight {
  color: var(--orange);
  position: relative;
}

/* ─── WHATSAPP FIXO ──────────────────────────────────────── */
.whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fixed svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-fixed:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

/* ─── BOTÃO PRINCIPAL ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255, 92, 0, 0.35);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 92, 0, 0.5);
}
.btn-primary svg { flex-shrink: 0; }

.btn-xl { font-size: 1.15rem; padding: 20px 44px; }

/* ─── SECTION COMMONS ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: var(--orange);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 56px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--black);
}

/* Ruído / textura de fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,92,0,0.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Grade de pontos */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(180px, 30vw, 420px);
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.02em;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 48px;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* Hero content */
.hero-content { max-width: 780px; }

.hero-video-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* container que corta */
.video-local {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.video-local video {
    width: 460px;
    height: 460px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.video-local video {
    transition: transform 0.3s ease;
}

.video-local video:hover {
    transform: scale(1.05);
}
.hero-badge {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 92, 0, 0.4);
  color: var(--orange-light);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--white-dim);
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-reforce {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
}
.hero-reforce span::before { content: '·'; margin-right: 8px; color: var(--orange); }
.hero-reforce span:first-child::before { content: ''; margin-right: 0; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.03em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  opacity: 0.4;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.9; }
}

/* ════════════════════════════════════════════════════════════
   2. PROBLEMA + SOLUÇÃO
   ════════════════════════════════════════════════════════════ */
.problema {
  background: var(--black-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.problema::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
}

/* Problema cards */
.prob-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.prob-card:last-child { margin-bottom: 0; }
.prob-card:hover {
  border-color: rgba(255,92,0,0.25);
  background: rgba(255,92,0,0.06);
}
.prob-icon { font-size: 1.6rem; flex-shrink: 0; }
.prob-card p {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* Virada */
.virada {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.virada-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.virada-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
.virada-inner p {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  max-width: 100px;
  line-height: 1.4;
}

/* Solução cards */
.sol-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,92,0,0.1), rgba(255,92,0,0.03));
  border: 1px solid rgba(255,92,0,0.2);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sol-card:last-child { margin-bottom: 0; }
.sol-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(255,92,0,0.12);
}
.sol-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.sol-card strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.sol-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* Frase forte */
.frase-forte {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px;
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.4;
}
.frase-forte span { color: var(--white-dim); font-weight: 400; }
.frase-forte strong {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1em;
}

/* ════════════════════════════════════════════════════════════
   3. BENEFÍCIOS
   ════════════════════════════════════════════════════════════ */
.beneficios {
  background: var(--black);
  padding: 120px 0;
  position: relative;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.beneficio-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.beneficio-card:hover {
  border-color: rgba(255, 92, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 92, 0, 0.1);
}
.beneficio-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(255,92,0,0.12), transparent 70%);
  border-radius: 0 var(--radius) 0 0;
  pointer-events: none;
}

.bcard-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  bottom: 16px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}
.bcard-check {
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.beneficio-card p {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.5;
}
.beneficio-card p strong {
  color: var(--white);
  font-weight: 800;
}

/* Impacto final */
.impacto-final {
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.impacto-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}
.impacto-final .impacto-line:last-child {
  background: linear-gradient(to left, transparent, var(--border));
}
.impacto-final p {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  white-space: nowrap;
}
.impacto-final p strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   4. AVALIAÇÕES
   ════════════════════════════════════════════════════════════ */
.avaliacoes {
  background: var(--black-2);
  padding: 120px 0;
  position: relative;
}
.avaliacoes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depoimento {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.depoimento:hover {
  border-color: rgba(255,92,0,0.3);
  transform: translateY(-4px);
}

.dep-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.dep-texto {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.dep-autor span {
  font-size: 0.82rem;
  color: var(--white-dim);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--orange);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  color: rgba(0,0,0,0.08);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 44px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.cta-title .highlight { color: rgba(0,0,0,0.5); }

.cta-final .btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.cta-final .btn-primary:hover {
  background: var(--black-3);
  box-shadow: 0 14px 50px rgba(0,0,0,0.45);
}

.urgencia {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   CARROSSEL INFINITO DE VÍDEOS
   ════════════════════════════════════════════════════════════ */
.carousel-section {
  background: var(--black-2);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.carousel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.carousel-section .container {
  margin-bottom: 56px;
}

/* Wrapper com overflow hidden + fade nas bordas */
.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--black-2), transparent);
}
.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--black-2), transparent);
}

/* Faixa que desliza */
.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  width: max-content;
  padding: 12px 0;
}

/* Cada item — proporção vertical (9:16) de short/reels */
.carousel-item {
  flex-shrink: 0;
  width: 220px;
  height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black-3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.carousel-item:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 92, 0, 0.2);
  border-color: rgba(255, 92, 0, 0.4);
}

.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-logo span {
  font-size: 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.3em;
  vertical-align: middle;
  margin-left: 6px;
}
.footer p {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .problema-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .virada { padding: 8px 0; }
  .virada-arrow { font-size: 2.2rem; transform: rotate(90deg); }
  .virada-inner p { max-width: 200px; }

  .beneficios-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero { padding: 100px 0 80px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .whatsapp-fixed span { display: none; }
  .whatsapp-fixed { padding: 14px; }
  .frase-forte { padding: 32px 24px; }
  .impacto-final { flex-direction: column; gap: 16px; white-space: normal; text-align: center; }
  .impacto-final .impacto-line { width: 80px; height: 1px; background: var(--border) !important; }
  .btn-xl { font-size: 1rem; padding: 18px 28px; }
  .cta-title { font-size: 1.8rem; }
  section { padding: 80px 0; }
  .section-title { margin-bottom: 40px; }
}