/* ============================================
   VOY — Landing Page · Púrpura moderno
   ============================================ */

/* ── Tokens de color landing (amarillo/ámbar) */
:root {
  --vp-900: #1c0f00;
  --vp-800: #3d2200;
  --vp-700: #7c4400;
  --vp-600: #c47a00;
  --vp-500: #f5a623;
  --vp-400: #fbbf24;
  --vp-300: #fcd34d;
  --vp-200: #fde68a;
  --vp-100: #fef3c7;
  --vp-50:  #fffbeb;
  --vp-accent: #f59e0b;
  --vp-glow:   rgba(245,166,35,0.40);
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #111; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utilidades ─────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hide-mobile { display: flex; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }

/* ── Reveal on scroll ───────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0; transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08); padding: 14px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -0.04em;
}
.nav-logo-dot { color: var(--vp-300); }
.nav.scrolled .nav-logo { color: var(--vp-600); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: #4b5563; }
.nav.scrolled .nav-links a:hover { color: var(--vp-600); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vp-500); color: white;
  padding: 10px 20px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 16px var(--vp-glow); transition: all 0.2s;
}
.btn-nav:hover { background: var(--vp-600); transform: translateY(-1px); box-shadow: 0 6px 24px var(--vp-glow); }
.nav.scrolled .btn-nav { background: var(--vp-500); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--vp-900) 0%, var(--vp-700) 55%, #5c3200 100%);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding-top: 80px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}

/* Blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5;
}
.blob-1 {
  width: 700px; height: 700px; top: -200px; right: -150px;
  background: radial-gradient(circle, var(--vp-accent) 0%, transparent 70%);
}
.blob-2 {
  width: 500px; height: 500px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}
.blob-3 {
  width: 300px; height: 300px; top: 40%; left: 35%;
  background: radial-gradient(circle, var(--vp-300) 0%, transparent 70%);
  opacity: 0.25;
}

/* Hero body */
.hero-body {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}

/* Hero text */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); color: white;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 24px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.3); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0.1); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; color: white; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.h1-accent {
  background: linear-gradient(90deg, var(--vp-200), var(--vp-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--vp-700);
  padding: 14px 28px; border-radius: 999px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); transition: all 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.btn-hero-ghost {
  color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 600;
  padding: 14px 8px; transition: color 0.2s;
}
.btn-hero-ghost:hover { color: white; }

/* Mockup flotante */
.hero-mockup {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  align-items: center; transform-origin: center top;
}
.mock-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
  padding: 20px; color: white; width: 100%; max-width: 340px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.mock-card-main { order: 1; }
.mock-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mock-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.mock-info { flex: 1; }
.mock-name { font-weight: 700; font-size: 0.95rem; }
.mock-job { font-size: 0.78rem; opacity: 0.65; }
.mock-avail {
  background: rgba(74,222,128,0.2); color: #4ade80;
  padding: 4px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}
.mock-stars { font-size: 0.8rem; color: #fbbf24; margin-bottom: 10px; }
.mock-stars span { color: rgba(255,255,255,0.5); margin-left: 6px; }
.mock-price { font-size: 0.85rem; opacity: 0.7; margin-bottom: 14px; }
.mock-price strong { color: white; font-size: 1.1rem; }
.mock-btn {
  width: 100%; padding: 10px; border-radius: 12px;
  background: var(--vp-500); color: white;
  font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none;
  transition: background 0.2s;
}
.mock-btn:hover { background: var(--vp-400); }
.mock-card-notif {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px; font-size: 0.85rem; font-weight: 600;
  background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.25);
  animation: float-notif 3s ease-in-out infinite;
}
.mock-card-notif i { color: #4ade80; font-size: 1rem; }
.mock-card-eta {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 14px; font-size: 0.85rem; font-weight: 600;
  width: auto; align-self: flex-start; margin-left: 24px;
  animation: float-eta 3.5s ease-in-out infinite;
}
.mock-card-eta i { color: var(--vp-300); }
@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes float-eta {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero stats */
.hero-stats {
  max-width: 1200px; margin: 0 auto; padding: 24px;
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.stat { flex: 1; text-align: center; padding: 16px; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: white; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,0.5);
  border-radius: 2px; animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   SECCIONES COMUNES
   ═══════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vp-500); margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.03em; color: #111; margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   CÓMO FUNCIONA
   ═══════════════════════════════════════════ */
.como { background: var(--vp-50); }
.steps {
  display: flex; align-items: flex-start; gap: 0;
}
.step {
  flex: 1; text-align: center; padding: 32px 24px;
  background: white; border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(109,40,217,0.12); }
.step-num {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--vp-400); margin-bottom: 16px; text-transform: uppercase;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--vp-100); color: var(--vp-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 20px; transition: background 0.3s;
}
.step:hover .step-icon { background: var(--vp-500); color: white; }
.step h3 { font-size: 1.2rem; font-weight: 800; color: #111; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; }
.step-line {
  flex-shrink: 0; width: 48px; height: 2px; margin-top: 80px;
  background: linear-gradient(90deg, var(--vp-200), var(--vp-400));
  border-radius: 1px;
}

/* ═══════════════════════════════════════════
   CATEGORÍAS
   ═══════════════════════════════════════════ */
.cats-section { background: white; }
.cats-scroll {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  background: var(--vp-50); border: 1.5px solid var(--vp-100);
  color: var(--vp-700); font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
}
.cat-chip i { font-size: 1rem; color: var(--vp-500); }
.cat-chip:hover {
  background: var(--vp-500); color: white; border-color: var(--vp-500);
  transform: translateY(-2px); box-shadow: 0 6px 20px var(--vp-glow);
}
.cat-chip:hover i { color: white; }

/* ═══════════════════════════════════════════
   CONFIANZA
   ═══════════════════════════════════════════ */
.trust-section { background: var(--vp-900); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.trust-item {
  text-align: center; padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.trust-item:hover { border-color: var(--vp-400); transform: translateY(-4px); }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(139,92,246,0.2); color: var(--vp-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 18px;
}
.trust-item h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.trust-item p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PARALLAX QUOTE
   ═══════════════════════════════════════════ */
.parallax-section {
  position: relative; height: 380px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.parallax-bg {
  position: absolute; inset: -80px;
  background: linear-gradient(135deg, var(--vp-800), var(--vp-600), #8a5500);
  will-change: transform;
}
.parallax-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,166,35,0.4) 0%, transparent 60%);
}
.parallax-content { position: relative; z-index: 2; padding: 24px; }
.parallax-quote {
  text-align: center; max-width: 600px;
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700;
  color: white; line-height: 1.5; letter-spacing: -0.02em;
}
.pq-mark { font-size: 4rem; line-height: 0; vertical-align: -0.3em; color: var(--vp-300); opacity: 0.5; }
.pq-author {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 28px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6);
}
.pq-author img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); }
.pq-stars { color: #fbbf24; }

/* ═══════════════════════════════════════════
   PERFILES
   ═══════════════════════════════════════════ */
.profiles-section { background: #f9fafb; }
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.profile-card {
  border-radius: 28px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.profile-card:hover { transform: translateY(-6px); }
.profile-client {
  background: white; border: 1.5px solid var(--vp-100);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.profile-worker {
  background: linear-gradient(135deg, var(--vp-800), var(--vp-600), #8a5500);
  box-shadow: 0 8px 40px var(--vp-glow);
}
.profile-client:hover { box-shadow: 0 12px 40px rgba(109,40,217,0.12); }
.profile-worker:hover { box-shadow: 0 16px 48px var(--vp-glow); }
.profile-tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.profile-client .profile-tag { background: var(--vp-100); color: var(--vp-600); }
.profile-worker .profile-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.profile-card h3 {
  font-size: 2rem; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em; margin-bottom: 28px;
}
.profile-client h3 { color: #111; }
.profile-worker h3 { color: white; }
.profile-card ul { list-style: none; padding: 0; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.profile-card li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.profile-client li { color: #4b5563; }
.profile-worker li { color: rgba(255,255,255,0.8); }
.profile-card li i { font-size: 0.75rem; }
.profile-client li i { color: var(--vp-500); }
.profile-worker li i { color: var(--vp-200); }
.profile-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 700; transition: all 0.2s;
  background: var(--vp-500); color: white;
  box-shadow: 0 4px 16px var(--vp-glow);
}
.profile-btn:hover { background: var(--vp-600); transform: translateY(-1px); }
.profile-btn-outline {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25); color: white; box-shadow: none;
}
.profile-btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--vp-900) 0%, var(--vp-700) 60%, #8a5500 100%);
  padding: 120px 0; text-align: center;
}
.cta-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: 0.4;
}
.cta-blob-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, var(--vp-accent), transparent 70%);
}
.cta-blob-2 {
  width: 400px; height: 400px; bottom: -100px; right: -100px;
  background: radial-gradient(circle, #e8850a, transparent 70%);
}
.cta-body { position: relative; z-index: 2; }
.cta-h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  color: white; letter-spacing: -0.03em; margin-bottom: 16px;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--vp-700);
  padding: 16px 36px; border-radius: 999px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25); transition: all 0.2s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); padding: 16px 24px; border-radius: 999px;
  font-size: 1rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.2s;
}
.btn-cta-ghost:hover { color: white; border-color: white; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: #0a0a0f; padding: 64px 0 0; }
.footer-inner { display: flex; gap: 64px; padding-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex-shrink: 0; max-width: 220px; }
.footer-logo {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 12px;
  color: white;
}
.footer-logo span { color: var(--vp-400); }
.footer-brand p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: #9ca3af;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--vp-500); color: white; }
.footer-cols { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #4b5563; font-weight: 600; }
.footer-col a { font-size: 0.875rem; color: #6b7280; transition: color 0.2s; }
.footer-col a:hover { color: var(--vp-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: #4b5563;
}

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════ */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  padding: 12px 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-sticky.visible { transform: translateY(0); pointer-events: all; }
.mobile-sticky-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  background: var(--vp-500); color: white;
  border-radius: 999px; font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 32px var(--vp-glow);
}
@media (min-width: 769px) { .mobile-sticky { display: none; } }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 16px; }
  .step-line { width: 2px; height: 32px; margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px 20px; }
  .hero-mockup { display: none; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stats .stat { flex: 1 0 45%; padding: 12px; }
  .hero-stats .stat-div:nth-child(4) { display: none; }
  .hero-stats .stat strong { font-size: 1.3rem; }

  /* Secciones */
  .section { padding: 64px 0; }
  .section-h2 { margin-bottom: 36px; }

  /* Cats */
  .cats-scroll { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .cats-scroll::-webkit-scrollbar { display: none; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { padding: 24px 16px; }

  /* Profiles */
  .profiles-grid { grid-template-columns: 1fr; }
  .profile-card { padding: 32px 24px; }
  .profile-card h3 { font-size: 1.7rem; }

  /* Parallax quote */
  .parallax-section { height: auto; padding: 64px 0; }
  .parallax-quote { font-size: 1.3rem; }

  /* CTA */
  .cta-final { padding: 80px 0; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .hero-pill { font-size: 0.75rem; }
  .btn-hero-primary { padding: 12px 22px; font-size: 0.9rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
}
