:root {
    --premium-bg: #030b1e;
    --premium-card: #0F172A;     
    --premium-text: #ffffff;
    --accent-cyan: #00FFFF;
    --accent-red: #EC1C27;
    --bg-dark: #020611;
    --font-main: 'Montserrat', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    --neon-cyan-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    --neon-red-glow: 0 0 20px rgba(236, 28, 39, 0.5);
    --glass-bg: rgba(15, 23, 42, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    background-color: var(--premium-bg);
    color: var(--premium-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container, .hero-section, section {
    width: 100%;
}

.tech-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    pointer-events: none; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(3, 11, 30, 0.85); /* Un poco más transparente para el blur */
    backdrop-filter: blur(12px); /* Blur más fuerte */
    -webkit-backdrop-filter: blur(12px); /* Soporte Safari */
    border-bottom: 1px solid rgba(0, 255, 255, 0.1); /* Borde sutil cyan */
    
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* LOGO CON EFECTO GLOW */
.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(236, 28, 39, 0.6)); /* Brillo rojo más intenso */
}

/* LISTA DE LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS GENERALES (Efecto Láser) */
.nav-links li a:not(.btn-nav) {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative; /* Necesario para la línea láser */
    letter-spacing: 0.5px;
    padding: 5px 0;
}

/* Excluímos el botón y el driver-link del efecto láser estándar */
.nav-links li a:not(.btn-nav):not(.driver-link)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%; /* Empieza invisible */
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan); /* Brillo neón */
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn-nav):not(.driver-link):hover {
    color: var(--accent-cyan);
}

.nav-links li a:not(.btn-nav):not(.driver-link):hover::after {
    width: 100%; /* Se expande al pasar el mouse */
}

/* LINK ESPECIAL CONDUCTOR (Tu diseño original intacto) */
.driver-link {
    color: var(--accent-cyan) !important;
    font-style: italic;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--accent-cyan);
    padding-bottom: 2px;
}

.driver-link:hover {
    color: white !important;
    border-bottom-style: solid;
    text-shadow: 0 0 10px var(--accent-cyan);
}

/* BOTÓN DE LOGIN (Mejorado) */
.btn-nav {
    /* ESTRUCTURA */
    display: inline-flex;       /* Mejor que block para centrar iconos/texto */
    align-items: center;
    justify-content: center;
    
    /* ESPACIADO (La cura para lo "apretado") */
    padding: 12px 35px;         /* Bastante aire a los lados */
    letter-spacing: 2px;        /* <--- ESTO ES LA MAGIA: Separa las letras */
    white-space: nowrap;        /* Prohibido romper línea */
    
    /* TEXTO */
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--accent-cyan) !important;
    
    /* ESTILO VISUAL */
    background: transparent;
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.1);
    
    /* TAMAÑO */
    min-width: 140px;           /* Un ancho mínimo decente */
    margin-left: 20px;          /* Separarlo un poco de los otros links */
}

.btn-nav:hover {
    background: var(--accent-cyan);
    color: #000 !important;     /* Texto negro para contraste máximo */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* MENÚ HAMBURGUESA (Móvil) */
.menu-toggle {
    display: none;
}

/* RESPONSIVE (Móvil) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 2000;
    }

    .pricing-container {
        flex-direction: column; /* Apila las tarjetas una sobre otra */
        padding: 0 15px;
    }

    .pricing-card {
        width: 100%; /* Que ocupe todo el ancho disponible */
        max-width: 380px; /* Pero que no se vea desproporcionada */
        margin-bottom: 20px;
        box-sizing: border-box; /* Evita que el padding rompa la tarjeta */
    }

    /* Achicamos el texto gigante para que quepa en la pantalla */
    .pricing-card .price {
        font-size: 3.5rem !important; /* Ajusta este número si aún lo ves muy grande */
        word-wrap: break-word; /* Evita que el texto se salga de la caja */
    }

    /* Ajustamos el símbolo de dólar y el /mes para que acompañen bien */
    .pricing-card .price .currency, 
    .pricing-card .price .period {
        font-size: 1.5rem !important; 
    }

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 10px;
        transition: 0.3s;
    }

    /* --- CONTENEDOR DEL MENÚ --- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido a la derecha */
        height: 100vh;
        width: 100%; /* PRO TIP: 100% se ve más limpio en móviles que 75% */
        
        /* Fondo elegante */
        background: rgba(2, 6, 17, 0.98);
        backdrop-filter: blur(15px);
        
        /* FLEXBOX ESTRICTO (De arriba hacia abajo y centrado) */
        display: flex;
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 30px; /* Separación perfecta entre los links */
        
        /* Limpieza de lista */
        margin: 0;
        padding: 0;
        list-style: none; 
        
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
        border-left: 1px solid var(--accent-cyan);
        z-index: 1500;
    }

    .nav-links.active {
        right: 0; /* Aparece */
    }

    /* --- LOS ENLACES (Textos) --- */
    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a:not(.btn-nav) {
        font-size: 1.5rem; 
        display: block; 
        width: 100%;
        padding: 10px 0;
        color: #fff; /* Aseguramos que se lea bien */
        text-decoration: none;
    }

    /* --- EL BOTÓN DEL PORTAL --- */
    .btn-nav {
        width: 80%; /* Que no toque los bordes de la pantalla */
        max-width: 300px;
        margin: 10px auto 0 auto;
        padding: 15px;
        font-size: 1.1rem !important;
        display: flex !important;
        justify-content: center;
        text-align: center;
    }

    /* Animación X del menú */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--accent-red); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--accent-red); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
}

.subtitle-tech {
    color: var(--accent-cyan);
    font-family: var(--font-tech);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.text-cyan { color: var(--accent-cyan); }
.text-gradient-red {
    background: linear-gradient(45deg, #ff4d4d, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(236, 28, 39, 0.4);
}

.cta-container { display: flex; gap: 20px; }

.btn-primary {
    background: var(--accent-red);
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--neon-red-glow);
    transition: 0.3s;
    border: 1px solid var(--accent-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--neon-cyan-glow);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    padding-top: 80px;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(236, 28, 39, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    background-position: center;
}

.hero-content { max-width: 600px; }

.hero-content h2 {
    color: var(--accent-cyan);
    font-family: var(--font-tech);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-visual {
    position: relative;
    width: 450px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-red));
    padding: 3px;
    border-radius: 20px;
    box-shadow: -10px -10px 30px rgba(0, 255, 255, 0.2), 
                10px 10px 30px rgba(236, 28, 39, 0.2);
    animation: float 6s ease-in-out infinite;
}

.neon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background-color: #000;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        padding-bottom: 50px;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin: 20px auto; }
    .cta-container { justify-content: center; }
    .hero-visual { margin-top: 50px; width: 100%; max-width: 400px; }
}

.process-section {
    background: linear-gradient(to bottom, var(--premium-bg), #060e24);
    padding-bottom: 100px;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 280px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-tech);
}

.icon-box {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    font-size: 2rem;
}

.cyan-glow { box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); border: 1px solid var(--accent-cyan); color: var(--accent-cyan); }
.red-glow { box-shadow: 0 0 20px rgba(236, 28, 39, 0.2); border: 1px solid var(--accent-red); color: var(--accent-red); }
.purple-glow { box-shadow: 0 0 20px rgba(100, 100, 255, 0.2); border: 1px solid #6464ff; color: #6464ff; }

.process-connector {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    margin-top: 80px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .process-container { flex-direction: column; align-items: center; }
    .process-connector { display: none; }
    .process-card { width: 100%; margin-bottom: 20px; }
}

.features-section {
    padding-bottom: 100px;
    background-color: var(--premium-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: linear-gradient(145deg, #0a1025, #050810);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-cyan);
    opacity: 0;
    transition: 0.3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrapper { font-size: 2.5rem; margin-bottom: 20px; }
.custom-icon { width: 60px; height: auto; filter: drop-shadow(0 0 5px rgba(0,255,255,0.5)); }
.custom-icon2 { width: 60px; height: auto; filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5)); }

.feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: white; }
.feature-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

.tech-tag {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-cyan);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.tech-tag.text-red { background: rgba(236, 28, 39, 0.1); color: var(--accent-red); }

.pricing-section {
    padding-bottom: 100px;
    padding-top: 50px;
    background: radial-gradient(circle at center, #111a33 0%, var(--premium-bg) 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.pricing-card.featured {
    transform: scale(1.08);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(236, 28, 39, 0.15);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--accent-red);
}

.price {
    font-family: var(--font-tech);
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
}
.price .currency { font-size: 1.5rem; vertical-align: super; opacity: 0.7; }
.price .period { font-size: 1rem; opacity: 0.5; font-weight: 400; }

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}
.features-list li { margin-bottom: 15px; color: #cbd5e1; font-size: 0.95rem; }

.check { color: var(--accent-cyan); margin-right: 10px; font-weight: bold; }
.check.text-red { color: var(--accent-red); }

.btn-price {
    display: block;
    padding: 15px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-price:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

.btn-red-glow {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 15px rgba(236, 28, 39, 0.3);
}
.btn-red-glow:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: 0 0 25px rgba(236, 28, 39, 0.6);
}

.pricing-note { text-align: center; margin-top: 40px; color: #64748b; font-size: 0.8rem; font-style: italic; }

@media (max-width: 900px) {
    .pricing-card.featured { transform: scale(1); z-index: 1; }
}

.faq-section {
    background-color: var(--premium-bg);
    padding-bottom: 100px;
}

.faq-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }

.faq-item {
    background: var(--premium-card);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item[open] { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 255, 255, 0.1); }

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-weight: 600;
    font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-cyan); }

.icon-plus { font-weight: 300; font-size: 1.5rem; transition: 0.3s; color: var(--accent-cyan); }
.faq-item[open] .icon-plus { transform: rotate(45deg); color: var(--accent-red); }

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #94a3b8;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.final-cta {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a2540 0%, var(--premium-bg) 70%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(236, 28, 39, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; font-family: var(--font-tech); }
.cta-content p { font-size: 1.2rem; color: #cbd5e1; margin-bottom: 40px; }

.btn-giant {
    padding: 20px 50px; font-size: 1.2rem; border-radius: 8px;
    box-shadow: 0 0 30px rgba(236, 28, 39, 0.4);
}
.btn-giant:hover { box-shadow: 0 0 50px rgba(236, 28, 39, 0.6); transform: scale(1.05); }
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(to top, #000000, var(--premium-bg));
}
.contact-container { max-width: 1000px; margin: 0 auto; display: flex; gap: 50px; align-items: center; }
.contact-info { flex: 1; }
.contact-form-wrapper {
    flex: 1;
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.item { display: flex; align-items: center; margin-bottom: 25px; }
.item .icon {
    font-size: 1.5rem; margin-right: 20px;
    background: rgba(255,255,255,0.05);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.tech-form input, .tech-form textarea {
    width: 100%;
    background: #030b1e;
    border: 1px solid #334155;
    padding: 15px;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
    transition: 0.3s;
    font-family: var(--font-main);
}
.tech-form input:focus, .tech-form textarea:focus {
    border-color: var(--accent-cyan); outline: none; box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.btn-submit {
    width: 100%;
    background: white; color: #000; border: none;
    padding: 15px; border-radius: 8px; font-weight: 800;
    cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: var(--accent-cyan); box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }

@media (max-width: 900px) {
    .contact-container { flex-direction: column; }
    .contact-info { text-align: center; margin-bottom: 30px; }
    .item { justify-content: center; }
    .cta-content h2 { font-size: 2rem; }
    .btn-giant { width: 100%; display: block; text-align: center; }
}

.main-footer {
    background: #000;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
    width: 100%;
    z-index: 10;
}

.footer-brand-wrapper {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: 0.3s ease;
    filter: grayscale(100%) brightness(200%);
}
.footer-img:hover { opacity: 1; transform: scale(1.05); filter: none; }

.copyright { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.social-links a { color: white; margin: 0 10px; text-decoration: none; font-weight: 700; opacity: 0.5; transition: 0.3s; }
.social-links a:hover { opacity: 1; color: var(--accent-cyan); }

@media (max-width: 768px) {
    .footer-img { height: 45px; margin-bottom: 15px; }
}

.btn-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background-color: #030b1e;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    
    display: flex; align-items: center; justify-content: center;
    padding-bottom: 5px;
}

.btn-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-top:hover { background-color: var(--accent-cyan); color: #000; box-shadow: 0 0 20px var(--accent-cyan); }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

.neon-divider {
    height: 1px; width: 80%;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0.5;
    box-shadow: 0 0 15px var(--accent-cyan);
}

/* =========================================
   BANNER CONDUCTORES (PRE-FOOTER)
   ========================================= */
.driver-cta-banner {
    background: linear-gradient(90deg, #000000 0%, #0a1525 100%);
    border-top: 1px solid var(--accent-cyan);
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
}

/* Efecto de luz rápida pasando (opcional) */
.driver-cta-banner::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; } /* Pasa rápido */
    100% { left: 200%; } /* Espera un rato */
}

.driver-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.driver-text h3 {
    font-family: var(--font-tech);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.driver-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 1rem;
}

.btn-driver-outline {
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
    white-space: nowrap; /* Que no se parta el texto */
}

.btn-driver-outline:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Responsive del Banner */
@media (max-width: 768px) {
    .driver-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- COOKIE TOAST CYBERPUNK --- */
.cookie-toast {
    display: none; /* Oculto por defecto */
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-toast p {
    margin: 0;
    font-size: 0.85rem;
    color: #d1d5db;
    flex: 1;
    min-width: 250px;
}

.cookie-toast a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.btn-cookie {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie:hover {
    background: var(--accent-cyan);
    color: #000;
}