/* ==========================================
   HERO SLIDER - BANNER AUTOMÁTICO
   Diseño profesional responsive
   ========================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a1628;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(26, 45, 75, 0.75));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00d9ff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-slide .hero-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: white !important;
    margin: 0 0 1.5rem 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.hero-slide .hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    min-width: 120px;
}

.hero-slide .stat-number {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #00d9ff !important;
    font-family: 'Orbitron', sans-serif !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4) !important;
}

.stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 217, 255, 0.4);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #00d9ff;
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    width: 30px;
    border-radius: 6px;
}

.hero-slider .scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-slider {
        height: 100vh;
    }
    
    .hero-slide .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-slide .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .stat-box {
        min-width: 90px;
    }
    
    .hero-slide .stat-number {
        font-size: 2.2rem !important;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 1rem;
    }
    
    .hero-next {
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-slide .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-slide .hero-stats {
        gap: 1rem;
    }
    
    .hero-slide .stat-number {
        font-size: 2rem !important;
    }
}
