
/* ========================================
   Importación de Tipografías
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Comfortaa:wght@400;700&display=swap');


/* ========================================
   Variables Globales
   ======================================== */

:root{
    --soventix-teal: #00d9ff;
    --soventix-orange: #ff6b35;
    --soventix-green: #7cff1f;
    --dark-bg: #1c295b;
    --dark-surface: #141829;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --neon-cyan: #00f0ff;
    --neon-green: #39ff14;

}

/* ========================================
   Splash Screen de Bienvenida
   ======================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0e27 50%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: splashFadeIn 1s ease-out;
}

.splash-logo {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: carDrive 2s ease-in-out infinite;
}

.splash-logo i {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.6));
}

@keyframes carDrive {
    0%, 100% {
        transform: translateX(-10px);
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
    }
    50% {
        transform: translateX(10px);
        filter: drop-shadow(0 0 40px rgba(124, 255, 31, 0.6));
    }
}

.splash-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.splash-highlight {
    display: block;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 6vw, 3.5rem);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
    margin-top: 0.5rem;
}

.splash-subtitle {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.splash-button {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--soventix-teal) 100%);
    border: 2px solid var(--neon-cyan);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-bg);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4),
                0 0 60px rgba(124, 255, 31, 0.2);
    animation: buttonPulse 2s ease-in-out infinite;
}

.splash-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.splash-button:hover::before {
    width: 300px;
    height: 300px;
}

.splash-button:hover {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--soventix-green) 100%);
    border-color: var(--neon-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(124, 255, 31, 0.6),
                0 0 80px rgba(0, 217, 255, 0.3);
}

.splash-button:active {
    transform: translateY(-1px) scale(1.02);
}

.splash-button-text {
    position: relative;
    z-index: 1;
}

.splash-button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.splash-button:hover .splash-button-icon {
    transform: translateX(5px);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.4),
                    0 0 60px rgba(124, 255, 31, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.6),
                    0 0 80px rgba(124, 255, 31, 0.4);
    }
}

.splash-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(0, 217, 255, 0.03) 0px,
            rgba(0, 217, 255, 0.03) 2px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(124, 255, 31, 0.03) 0px,
            rgba(124, 255, 31, 0.03) 2px,
            transparent 2px,
            transparent 4px
        );
    animation: splashCircuitFlow 20s linear infinite;
    z-index: 1;
}

@keyframes splashCircuitFlow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(10px, 10px);
    }
}

@keyframes splashFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para Splash Screen */
@media (max-width: 768px) {
    .splash-logo {
        font-size: 4rem;
    }

    .splash-subtitle br {
        display: none;
    }

    .splash-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        font-size: 3rem;
    }

    .splash-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .splash-button-text {
        font-size: 0.85rem;
    }
}

/* ========================================
   Reset Global
   ======================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1530 50%, var(--dark-bg) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
}

.circuite-pattern{
    position: relative;
    overflow: hidden;
}

.circuite-pattern::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(0, 217, 255, 0.08) 0px,
            rgba(0, 217, 255, 0.08) 2px,
            transparent 2px,
            transparent 4px
        ),

        repeating-linear-gradient(
            -45deg,
            rgba(0, 217, 255, 0.08) 0px,
            rgba(0, 217, 255, 0.08) 2px,
            transparent 2px,
            transparent 4px
        );
    
    pointer-events: none;
    z-index: 0;
    animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow{
    0% {transform: translate(0, 0);}
    100% {transform: translate(10px, 10px);}
}

section{
    position: relative;
    z-index: 1;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.hero-content{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 2;
}

.garage-illustration{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.garage-img{
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    filter: brightness(0.1) drop-shadow(0 0 0px rgba(0, 217, 255, 0));
    transition: filter 0.3s ease;
}

/* Clase que se agrega dinámicamente cuando el usuario entra */
.garage-img.logo-animate {
    animation: flickerStart 2.5s ease-in-out forwards,
               float 3s ease-in-out infinite 2.5s;
}

@keyframes flickerStart {
    0% {
        opacity: 1;
        filter: brightness(0.1) drop-shadow(0 0 0px rgba(0, 217, 255, 0));
    }
    15% {
        opacity: 1;
        filter: brightness(0.3) drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
    }
    20% {
        opacity: 1;
        filter: brightness(0.15) drop-shadow(0 0 2px rgba(0, 217, 255, 0.1));
    }
    30% {
        opacity: 1;
        filter: brightness(0.5) drop-shadow(0 0 25px rgba(0, 217, 255, 0.5));
    }
    35% {
        opacity: 1;
        filter: brightness(0.2) drop-shadow(0 0 5px rgba(0, 217, 255, 0.2));
    }
    45% {
        opacity: 1;
        filter: brightness(0.8) drop-shadow(0 0 35px rgba(0, 217, 255, 0.7));
    }
    50% {
        opacity: 1;
        filter: brightness(0.4) drop-shadow(0 0 15px rgba(0, 217, 255, 0.3));
    }
    60% {
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 40px rgba(0, 217, 255, 0.8));
    }
    65% {
        opacity: 1;
        filter: brightness(0.9) drop-shadow(0 0 30px rgba(0, 217, 255, 0.7));
    }
    75% {
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 40px rgba(0, 217, 255, 0.8));
    }
    100% {
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 30px rgba(0, 217, 255, 0.6));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        filter: brightness(1) drop-shadow(0 0 25px rgba(0, 217, 255, 0.5));
    }
    50% {
        transform: translateY(-20px);
        filter: brightness(1) drop-shadow(0 0 35px rgba(124, 255, 31, 0.4));
    }
}

.hero h1{
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--soventix-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(124, 255, 31, 0.1));
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.hero h1 .subtitle-script {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 0 10px rgba(124, 255, 31, 0.1);
}

/* ========================================
   Contenedor cuenta regresiva
   ======================================== */
.countdown-container{
    background-color: rgba(20, 24, 41, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 100%;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.2), inset 0 0 40px  rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.countdown-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {left: -100%;}
    100% {left: 100%}
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.05);
}

.countdown{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-item{
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2), inset 0 0 20px rgba(0, 217, 255, 0.05);
    position: relative;
}

.countdown-item::before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.countdown-item:hover{
    border-color: var(--neon-green);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(124, 255, 31, 0.3), inset 0 0 20px rgba(124, 255, 31, 0.05);
}

.countdown-value{
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    display: block;
    line-height: 1;
    text-shadow: 0 0 15px rgba(124, 255, 31, 0.6);
}

.countdown-label-item {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   Botón Primario
   ======================================== */
.btn-primary{
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--soventix-teal) 100%);
    border: 2px solid var(--neon-cyan);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.04);
}

.btn-primary::before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;

}

.btn-primary:hover{
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--soventix-green) 100%);
    border-color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 255, 31, 0.05);
    color: var(--dark-bg);
}

.btn-primary:active{
    transform: translateY(0)
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(124, 255, 31, 0.2);
}

.benefits::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.5;
}

.benefits-title{
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-animation-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
}

.benefit-card{
    background: rgba(20, 24, 41, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0% transparent 70%);
    animation: pulse-glow 4s ease in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow{
    0%, 100% {transform: scale(1); opacity: 0.5;}
    50% {transform: scale(1.1); opacity: 1;}
}

.benefit-card:hover{
    border-color:var(--neon-green);
    background: rgba(20,24, 41, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);

}

.benefit-icon{
    font-size: 2.5rem;
    background:linear-gradient(135def, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -web-text-fill-color:transparent;
    background-clip:text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
    position: relative;
    z-index: 2;
}

.benefit-card h3{
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.benefit-card p{
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========================================
   Form Section
   ======================================== */

.form-section{
    padding: 4rem 0;
    border-top: 1px solid rgba(124, 255, 31, 0.2);
}

.form-title{
    font-size: 2rem;
    font-weight: 800;
    background:linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
}

.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(20, 24, 41, 0.7);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
}

.form-group{
    margin-bottom: 1.5rem;
}

.form-label{
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.2);
}

.form-control{
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 14, 39, 0.8);
    color: var(--text-primary);
}

.form-control::placeholder{
    color:var(--text-secondary)
}

.form-control:focus{
    border-color: var(--neon-cyan);
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    outline: none;
    color: var(--text-primary);
}

.form-control option{
    background: var(--dark-surface);
    color: var(--text-primary);
}

.form-control.is-invalid{
    border-color:var(--soventix-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.invalid-feedback{
    color: var(--soventix-orange);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ========================================
   Mensaje de Éxito
   ======================================== */

.alert-sucess{
    background: rgba(124, 255, 31, 0.1);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(124, 255, 31, 0.2);
    text-shadow: 0 0 5px rgba(124, 255, 31, 0.3);
}

/* ========================================
   Footer
   ======================================== */

footer {
    background: var(--dark-surface);
    color: var(--text-secondary);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

footer p {
    margin: 0.5rem 0;
}

footer a:hover{
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(124, 255, 31, 0.3);
}

/* ========================================
   Animacion para icono de robot
======================================== */

.fa-robot{
    color: var(--neon-cyan);
    margin-right: 0.5rem;
    animation: robotBlink 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes robotBlink{
    0%, 100%{
        color: var(--neon-cyan);
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.8),
                     0 0 20px rgba(0, 240, 255, 0.4);
        opacity: 1;
    }
    25%{
        color: var(--neon-green);
        text-shadow: 0 0 15px rgba(124, 255, 31, 0.9),
                     0 0 30px rgba(124, 255, 31, 0.5);
        opacity: 1;
    }
    50%{
        color: var(--neon-cyan);
        text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
        opacity: 0.6;
    }
    75%{
        color: var(--neon-green);
        text-shadow: 0 0 15px rgba(124, 255, 31, 0.9),
                     0 0 30px rgba(124, 255, 31, 0.5);
        opacity: 1;
    }
}

/* ========================================
   Modal de Éxito
======================================== */
.success-modal-content {
    background: linear-gradient(135deg, rgba(20, 24, 41, 0.98) 0%, rgba(28, 41, 91, 0.98) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3),
                0 0 80px rgba(124, 255, 31, 0.2);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.success-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.success-icon-wrapper {
    position: relative;
    z-index: 2;
}

.success-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(124, 255, 31, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(124, 255, 31, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
    }
}

.success-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.success-modal-greeting {
    color: var(--text-primary);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.success-modal-greeting strong {
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.success-modal-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.success-modal-text strong {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(124, 255, 31, 0.4);
}

.success-modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.modal-backdrop.show {
    opacity: 0.8;
    background: linear-gradient(135deg, rgba(28, 41, 91, 0.8) 0%, rgba(15, 21, 48, 0.9) 100%);
}

/* ========================================
   Accesibilidad
======================================== */
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible{
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

a, button {
    transition: all 0.3s ease;
}

/* ========================================
  Diseño Resposivo
======================================== */
@media (max-width: 768px){
    .hero h1{
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .hero .subtitle{
        font-size: 1rem;
    }

    .garage-img{
        max-width: 280px;
    }

    .countdown-container{
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }

    .countdown{
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }

    .countdown-item{
        padding: 1rem 0.75rem;
    }

    .countdown-value{
        font-size: 1.5rem;
    }

    .countdown-label-item{
        font-size: 0.6rem;
    }

    .benefits{
        padding: 3rem 0;
    }

    .benefits-title{
        font-size: 1.75rem;
    }

    .form-wrapper{
        padding: 1.5rem;
    }

    .form-title{
        font-size: 1.5rem;
    }
}

@media (max-width: 480px){
    .hero h1{
        font-size: 1.25rem;
    }

    .garage-img{
        max-width: 240px;
    }

    .countdown-container{
        padding: 1rem;
    }

    .countdown-value{
        font-size: 1.25rem;
    }

    .btn-primary{
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

