/* ════════════════════════════════════════════════
   AUR.IA — PREMIUM FUTURISTIC STYLING ENGINE
════════════════════════════════════════════════ */

:root {
    --bg-pure: #030306;
    --bg-card: rgba(8, 8, 16, 0.65);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --primary: #00d4ff;
    --secondary: #7b2fff;
    --accent: #0044ff;
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-border-glow: rgba(0, 212, 255, 0.25);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ─── RESET GENERAL Y PREVENCIÓN DE OVERFLOW ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-pure);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: var(--bg-pure);
}
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (min-width: 769px) {
    * {
        cursor: none !important;
    }
}

/* ─── DINÁMICA DE SCROLL PROGRESS BAR ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 99999;
    width: 0%;
    pointer-events: none;
    box-shadow: 0 0 10px var(--primary);
}

/* ─── LOADER CINEMÁTICO DE ENTRADA ─── */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #020204;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.loader-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.loader-brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.dot-glow {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
}

.loader-status {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.loader-status .pct {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 2px;
}

.loader-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

#loaderBar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 8px var(--primary);
}

.loader-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ─── EXPERIENCIA DE CURSOR PERSONALIZADO ─── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
}

.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000;
}

.cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.05);
    transition: width 0.25s cubic-bezier(0.19, 1, 0.22, 1), height 0.25s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.25s, border-color 0.25s;
}

body.cursor-hover .cursor-ring {
    width: 55px;
    height: 55px;
    background-color: rgba(0, 212, 255, 0.04);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

/* ─── DISEÑO DE LA ENVOLVENTE GLASSMORPHISM ─── */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ─── NAVEGACIÓN PREMIUM ─── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
    text-decoration: none;
}

.gradient-accent {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-main);
}

#nav.scrolled {
    padding: 1rem 0;
    background: rgba(3, 3, 6, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* ─── COMPONENTE BOTÓN PREMIUM ─── */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    border: none;
}

.btn-premium.primary {
    background-color: var(--text-main);
    color: var(--bg-pure);
}

.btn-premium.primary:hover {
    background-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-premium.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-premium.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-nav:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-arrow {
    transform: translateX(4px);
}

/* ─── HERO SECTION INTERACTIVO ─── */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.orb-1 { width: 450px; height: 450px; background: var(--primary); top: 15%; left: -5%; }
.orb-2 { width: 500px; height: 500px; background: var(--secondary); bottom: 10%; right: -5%; }
.orb-3 { width: 350px; height: 350px; background: var(--accent); top: 40%; left: 55%; }

.hero-wrapper {
    max-width: 950px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.line-mask {
    overflow: hidden;
    display: block;
}

.reveal-line {
    display: inline-block;
    transform: translateY(105%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: mouse-pulse 1.6s infinite ease-in-out;
}

@keyframes mouse-pulse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

/* ─── MAQUETACIÓN ESTRUCTURAL DE SECCIONES ─── */
.section-layout {
    width: 100%;
    padding: 8rem 0;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-header {
    max-width: 750px;
    margin-bottom: 5rem;
}

.section-header.text-center { margin-left: auto; margin-right: auto; }

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.mt-medium { margin-top: 3rem; }
.mt-large { margin-top: 5rem; }

/* ─── ARQUITECTURA BENTO GRID & CARDS ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.bento-card {
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.bento-card:hover {
    border-color: var(--glass-border-glow);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 2rem;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── FORMULARIOS DE CAPTACIÓN AVANZADOS ─── */
.capture-banner {
    width: 100%;
    padding: 3rem 0;
}

.capture-wrapper {
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
}

.badge-mini {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    font-size: 0.7rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.capture-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.capture-content h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.capture-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
}

.premium-form {
    display: flex;
    max-width: 620px;
    margin: 0 auto;
    gap: 1rem;
}

.input-glow-wrapper {
    flex: 1;
    position: relative;
}

.premium-form input {
    width: 100%;
    height: 54px;
    background: rgba(5, 5, 10, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0 1.75rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.premium-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.12);
}

/* ─── SEC SPLIT (BOOM SECTION) CON CANVA RESPONSIVE ─── */
#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.layout-split {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
    position: relative;
    z-index: 5;
}

.split-text { flex: 1.1; }
.split-visual {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-facts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.future-fact {
    display: flex;
    gap: 1.25rem;
}

.fact-icon {
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.future-fact p strong {
    color: var(--text-main);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.future-fact p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Dashboard Component */
.dashboard {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.dashboard-top {
    background: rgba(255,255,255,0.02);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.window-dots {
    display: flex;
    gap: 6px;
    margin-right: 1.5rem;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.window-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.dashboard-content {
    padding: 2.5rem 2rem;
}

.dashboard-metric .metric-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dashboard-metric .metric-info .counter {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
}

.bar-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
}

.bar-fill.gradient-bg {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.bar-fill.traditional {
    background: rgba(255, 255, 255, 0.2);
}

/* ─── ECOSYSTEM: ESTRUCTURA NEURAL CANVAS & STATS ─── */
#neuralCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stat-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-left: 2px;
}

.stat-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ─── TICKER INFINITO DE SERVICIOS ─── */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.ticker-container {
    white-space: nowrap;
    display: flex;
}

.services-strip {
    display: inline-flex;
    gap: 3rem;
    will-change: transform;
}

.service-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

/* ─── MONETIZACIÓN LAYOUT ─── */
.money-layout {
    display: flex;
    gap: 2rem;
}

.money-item {
    flex: 1;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.money-badge {
    align-self: flex-start;
    padding: 0.3rem 0.8rem;
    background: rgba(123, 47, 255, 0.1);
    border: 1px solid rgba(123, 47, 255, 0.3);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.money-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.money-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.money-footer {
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.money-footer .price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.money-footer .frequency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FOMO Y OLAS DE INNOVACIÓN ─── */
#starsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.waves-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wave-card {
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: left;
    transition: transform 0.4s;
}

.wave-year {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.wave-year.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.wave-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wave-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fomo-warning {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 680px;
    margin: 4rem auto 0 auto;
}

/* ─── LINEA DE TIEMPO (ROADMAP) ─── */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--glass-border) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 1.75rem;
    width: 9px;
    height: 9px;
    background: var(--bg-pure);
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    transform: translateX(-3.5px);
    z-index: 5;
    transition: border-color 0.4s;
}

.timeline-item.active .timeline-dot {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    background: var(--primary);
}

.timeline-content {
    border-radius: 20px;
    padding: 2.5rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ─── CAPTACIÓN DEFINITIVA FINAL ─── */
.final-section {
    padding: 6rem 0;
}

#finalCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.capture-box.large {
    max-width: 950px;
    padding: 6rem 5rem;
    border-radius: 40px;
    z-index: 10;
}

.final-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.final-line {
    display: block;
}

.final-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 3rem auto;
}

.large-form { max-width: 700px; }
.large-form input { height: 58px; }
.large-btn { padding: 1rem 2.5rem; height: 58px; }

.spam-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    opacity: 0.6;
}

/* ─── FOOTER PREMIUM EN CASTELLANO ─── */
footer {
    width: 100%;
    padding: 5rem 0 3rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.container-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    max-width: 400px;
}

.footer-nav-links {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav-links a:hover { color: var(--text-main); }

.footer-meta {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover { color: var(--text-main); }

/* ─── REVELACIONES ANIMADAS (GSAP / OBSERVER BACKUP) ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card {
    opacity: 0;
    transform: scale(0.96) translateY(25px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-card.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes bar-grow {
    from { width: 0%; }
    to { width: var(--target-width); }
}

/* ─── RESPONSIVE SYSTEM EXTREMO Y LIMPIO ─── */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .money-layout { flex-direction: column; }
    .layout-split { flex-direction: column; gap: 4rem; }
    .split-visual { width: 100%; justify-content: initial; }
    .waves-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions { display: none; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .capture-wrapper { padding: 3rem 1.5rem; }
    .capture-box.large { padding: 4rem 1.5rem; }
    .premium-form { flex-direction: column; width: 100%; }
    .premium-form input { border-radius: 12px; }
    .btn-premium { border-radius: 12px; width: 100%; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .section-layout { padding: 5rem 0; }
    .timeline { padding-left: 1.5rem; }
}