/* ========================================================
   VARIABLES GLOBALES Y RESETEO (FIX MÓVIL)
   ======================================================== */
:root {
  --color-primary: #0b1120;
  --color-primary-light: #1e293b;
  --color-secondary: #00d8a5;
  --color-secondary-glow: rgba(0, 216, 165, 0.4);
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-bg: #0b1120;
  --navbar-height: 72px;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Premium Scrollbar & Selection ─── */
::selection {
  background: rgba(0, 216, 165, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  border: 2px solid var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

img, svg {
  display: block;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Typography & Utilities ─── */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(270deg, #00d8a5, #3b82f6, #00d8a5);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* ================= NAVEGACIÓN ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 17, 32, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--navbar-height);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--color-secondary); }

.btn-primary {
    background-color: var(--color-secondary);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 216, 165, 0.4);
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden; 
  padding: 5rem 0 4rem;
  width: 100%; 
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; perspective: 1000px; overflow: hidden; }
.hero__bg-grid { position: absolute; bottom: -50%; left: -50%; width: 200%; height: 200%; background-image: linear-gradient(rgba(0, 216, 165, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 216, 165, 0.1) 1px, transparent 1px); background-size: 60px 60px; transform: rotateX(60deg) translateY(0); transform-origin: center top; animation: moveGrid 15s linear infinite; mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 60%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 60%); }
@keyframes moveGrid { 0% { transform: rotateX(60deg) translateY(0); } 100% { transform: rotateX(60deg) translateY(60px); } }
.hero__bg-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.25; z-index: 0; mix-blend-mode: screen; }
.hero__bg-glow--1 { width: 600px; height: 600px; background: #00d8a5; top: -150px; right: -100px; animation: floatHero 10s ease-in-out infinite, colorShift 15s linear infinite; }
.hero__bg-glow--2 { width: 500px; height: 500px; background: #3b82f6; bottom: -100px; left: 0; animation: floatHero 12s ease-in-out infinite reverse, colorShift 20s linear infinite reverse; }
@keyframes colorShift { 0% { filter: blur(100px) hue-rotate(0deg); } 50% { filter: blur(100px) hue-rotate(40deg); } 100% { filter: blur(100px) hue-rotate(0deg); } }
.hero__container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; width: 100%; align-items: center; }
.hero__content { display: flex; flex-direction: column; animation: cinematicUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;}
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0, 216, 165, 0.12); border: 1px solid rgba(0, 216, 165, 0.3); color: #00d8a5; padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 1.5rem; width: fit-content; box-shadow: 0 0 20px rgba(0, 216, 165, 0.2); }
.hero__badge-dot { width: 8px; height: 8px; background: #00d8a5; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
.hero__title { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.03em; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero__title--accent { color: #00d8a5; }
.hero__subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.8; max-width: 500px; margin-bottom: 2.5rem; font-weight: 400; }
.hero__actions { display: flex; gap: 1rem; margin-bottom: 3rem; width: 100%; max-width: 400px; }
.hero__btn-primary { background: linear-gradient(135deg, #00d8a5 0%, #00a880 100%); color: #0b1120; border: none; padding: 0.875rem 1.75rem; border-radius: 12px; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 8px 25px rgba(0, 216, 165, 0.4), inset 0 2px 0 rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.hero__btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0, 216, 165, 0.6), inset 0 2px 0 rgba(255,255,255,0.2); }
.hero__btn-secondary { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.9); border: 1px solid rgba(255, 255, 255, 0.1); padding: 0.875rem 1.75rem; border-radius: 12px; font-size: 1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; backdrop-filter: blur(10px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.hero__btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }
.hero__stats { display: flex; align-items: center; gap: 1.5rem; opacity: 0; animation: cinematicUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s forwards;}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-number { font-size: 1.75rem; font-weight: 800; background: linear-gradient(135deg, #00d8a5, #00e5af); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; filter: drop-shadow(0 2px 10px rgba(0, 216, 165, 0.3)); }
.hero__stat-label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; font-weight: 600; }
.hero__stat-divider { width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent); }
.hero__mockups { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 420px; width: 100%; perspective: 1500px; opacity: 0; animation: cinematicUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s forwards;}

.hero__laptop { position: relative; z-index: 1; animation: float 8s ease-in-out infinite; width: 100%; max-width: 360px; transform-style: preserve-3d; transform: rotateY(-10deg) rotateX(5deg); }
.hero__laptop-screen { background: rgba(13, 24, 33, 0.85); backdrop-filter: blur(12px); border-radius: 12px 12px 0 0; border: 2px solid rgba(255, 255, 255, 0.1); border-bottom: 2px solid #2a3d55; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 40px rgba(0, 216, 165, 0.15); width: 100%; position: relative; }
.hero__laptop-topbar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #1a2a3d; border-bottom: 1px solid #2a3d55; }
.hero__laptop-url { font-size: 0.65rem; color: rgba(255, 255, 255, 0.4); margin-left: 8px; font-family: monospace; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hero__dot--red { background: #ff5f57; }
.hero__dot--yellow { background: #febc2e; }
.hero__dot--green { background: #28c840; }
.hero__laptop-content { padding: 14px; min-height: 200px; }
.hero__dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.hero__dash-live { color: #00d8a5; font-size: 0.65rem; animation: pulse-dot 2s infinite; }
.hero__dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.hero__dash-card { background: rgba(0, 216, 165, 0.08); border: 1px solid rgba(0, 216, 165, 0.15); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.hero__dash-card-label { font-size: 0.6rem; color: rgba(255, 255, 255, 0.5); }
.hero__dash-card-value { font-size: 1rem; font-weight: 700; color: #fff; }
.hero__dash-card-value--green { color: #00d8a5; }
.hero__dash-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-bottom: 10px; padding: 0 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.hero__chart-bar { flex: 1; background: rgba(0, 216, 165, 0.25); border-radius: 3px 3px 0 0; transition: height 0.3s; }
.hero__chart-bar--active { background: #00d8a5; }
.hero__dash-footer { font-size: 0.65rem; color: #00d8a5; font-weight: 600; }
.hero__laptop-hinge { height: 6px; background: linear-gradient(#243a52, #1a2a3d); border-left: 2px solid #2a3d55; border-right: 2px solid #2a3d55; }
.hero__laptop-base { width: 100%; background: linear-gradient(180deg, #243a52 0%, #1a2a3d 100%); border-radius: 0 0 12px 12px; height: 20px; border: 2px solid #2a3d55; border-top: none; display: flex; justify-content: center; align-items: center; }

.hero__mobile { position: absolute; bottom: -10px; right: -30px; z-index: 2; animation: floatMobile 5s ease-in-out 1s infinite; }
@keyframes floatMobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero__mobile-inner { width: 130px; background: rgba(13, 24, 33, 0.85); backdrop-filter: blur(12px); border-radius: 18px; border: 2px solid rgba(255, 255, 255, 0.1); overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.2); }
.hero__mobile-notch { width: 50px; height: 6px; background: #1a2a3d; border-radius: 0 0 6px 6px; margin: 0 auto 8px; }
.hero__chat-header { display: flex; align-items: center; gap: 6px; padding: 0 8px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.hero__chat-avatar { font-size: 1.1rem; }
.hero__chat-name { display: block; font-size: 0.58rem; font-weight: 700; color: #fff; }
.hero__chat-status { font-size: 0.52rem; color: #00d8a5; }
.hero__chat-messages { padding: 8px; display: flex; flex-direction: column; gap: 6px; min-height: 120px; }
.hero__chat-msg { padding: 5px 8px; border-radius: 10px; font-size: 0.55rem; line-height: 1.4; max-width: 85%; }
.hero__chat-msg--received { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.8); align-self: flex-start; border-bottom-left-radius: 3px; }
.hero__chat-msg--sent { background: rgba(0, 216, 165, 0.2); color: #00d8a5; align-self: flex-end; border-bottom-right-radius: 3px; }
.hero__chat-typing { display: flex; gap: 4px; align-items: center; padding: 4px 8px; }
.hero__chat-typing span { width: 5px; height: 5px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; animation: typing 1.2s ease-in-out infinite; }
.hero__chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.hero__chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.hero__mobile-home-bar { height: 22px; display: flex; justify-content: center; align-items: center; background: #0d1821; }

.hero__scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); background: rgba(0, 216, 165, 0.12); border: 1px solid rgba(0, 216, 165, 0.3); color: #00d8a5; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; animation: floatMobile 2s ease-in-out infinite; transition: background 0.2s; }
.hero__scroll-hint:hover { background: rgba(0, 216, 165, 0.25); }

/* ================= TICKER Y SERVICIOS ================= */
.ticker-banner { background-color: rgba(0, 229, 155, 0.03); border-top: 1px solid rgba(0, 229, 155, 0.1); border-bottom: 1px solid rgba(0, 229, 155, 0.1); padding: 1rem 0; text-align: center; color: var(--color-secondary); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; }
.services { padding: 6rem 5%; }
.services-header { text-align: center; margin-bottom: 4rem; }
.badge-outline { border: 1px solid var(--color-secondary); color: var(--color-secondary); padding: 0.4rem 1.5rem; border-radius: 20px; font-size: 0.85rem; margin-bottom: 1rem; display: inline-block; }
.services-header h2 { font-size: 2.5rem; margin: 1rem 0; }
.services-header p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2.5rem 2rem; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 216, 165, 0.1); border-color: rgba(0, 216, 165, 0.2); }
.service-card .icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.service-card p { color: var(--color-text-muted); font-size: 0.95rem; flex-grow: 1; margin-bottom: 1.5rem; }
.service-card a { color: var(--color-secondary); font-weight: 600; font-size: 0.95rem; }
.service-card a:hover { text-decoration: underline; }

/* ================= CTA BANNER ================= */
.cta-section { padding: 0 5% 5rem; }
.cta-box { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.cta-box h3 { font-size: 1.5rem; }

/* ================= WHATSAPP FAB (CORREGIDO) ================= */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fabPulse 2s infinite cubic-bezier(0.66, 0, 0, 1), fadeInUp 0.5s ease;
  text-decoration: none;
}

@keyframes fabPulse {
  to { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0), 0 10px 25px rgba(0,0,0,0.3); }
}

/* Solo sombra al botón general, NADA de giros aquí */
.fab:hover {
  animation: none;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* El ícono tiene la transición y es el único que gira */
.fab__icon { 
  font-size: 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); 
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab:hover .fab__icon {
  transform: scale(1.15) rotate(-5deg);
}

/* ================= TOOLTIP ================= */
.fab__tooltip {
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  z-index: 10;
  transform: translateY(-50%) translateX(15px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: none !important;
  -webkit-font-feature-settings: "case" 0, "cpsp" 0;
  font-feature-settings: "case" 0, "cpsp" 0;
  font-variant-caps: normal !important;
}

.fab__tooltip.is-visible,
.fab:hover .fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.fab__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(37, 211, 102, 0.5);
}

.fab:hover .fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ================= FOOTER ORIGINAL ================= */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(0, 216, 165, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer__logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer__logo-name { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: 0.03em; }
.footer__tagline { font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.55); margin-bottom: 1rem; max-width: 260px; }
.footer__social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer__social-link { display: inline-flex; align-items: center; gap: 0.3rem; color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; font-weight: 500; transition: color 0.2s; }
.footer__social-link:hover { color: #00d8a5; }

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 216, 165, 0.12);
  border: 1px solid rgba(0, 216, 165, 0.3);
  color: #00d8a5;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}
.footer__whatsapp:hover { background: rgba(0, 216, 165, 0.22); }

.footer__col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.4); margin-bottom: 1rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0;}
.footer__link { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; transition: color 0.2s; text-decoration: none;}
.footer__link:hover { color: #00d8a5; }
.footer__link--text { cursor: default; }
.footer__link--text:hover { color: rgba(255, 255, 255, 0.65); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }

.footer__back-top {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer__back-top:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ================= ANIMACIONES GENERALES ================= */
@keyframes cinematicUp { 0% { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(10px); } 100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } }

/* ================= RESPONSIVO GENERAL ================= */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding-top: 2rem; }
  .hero__content { align-items: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__mockups { min-height: 320px; max-width: 460px; margin: 0 auto; perspective: none; }
  .hero__mobile { right: 0px; bottom: -5px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero__title { font-size: 2.5rem; }
  .footer__container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__btn-primary, .hero__btn-secondary { width: 100%; text-align: center; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-divider { width: 40px; height: 1px; background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent); }
  .hero__mockups { transform: scale(0.85); transform-origin: bottom center; }
  .footer__container { grid-template-columns: 1fr; gap: 2rem; }
  .fab { bottom: 1.5rem; right: 1.25rem; width: 56px; height: 56px; }
}