/* ========================================
   STATS SECTION (FUERA DEL SLIDER)
   Estilos para desktop y móvil - V2.15
   ======================================== */

/* ============================================
   DESKTOP - Stats horizontales
   ============================================ */

.hero-stats-section {
    width: 100%;
    padding: 5rem 2rem;
    background: var(--bg-dark); /* Fondo oscuro base */
}

.hero-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

/* STAT CARDS - MISMO COLOR QUE WHY-CARDS */
.hero-stats-section .stat-card {
    background: var(--bg-card); /* rgba(30, 41, 59, 0.5) */
    border: 1px solid var(--border); /* rgba(148, 163, 184, 0.1) */
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stats-section .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
}

.hero-stats-section .stat-number-large {
    font-family: 'Nacelle', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-stats-section .global-title {
    font-family: 'Nacelle', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.1;
}

.hero-stats-section .global-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-stats-section .stat-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   TABLET - 2 columnas
   ============================================ */

@media (max-width: 968px) {
    .hero-stats-section {
        padding: 4rem 1.5rem;
    }
    
    .hero-stats-section .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-stats-section .stat-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   MÓVIL - Stats section
   ============================================ */

@media (max-width: 768px) {
    .hero-stats-section {
        padding: 3rem 1rem;
    }
}

/* ============================================
   SCROLL INDICATOR - BASE STYLES
   ============================================ */

.scroll-indicator-wrapper {
    background: var(--bg);
    padding: 8rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    transition: opacity 0.4s ease;
}

.scroll-indicator-wrapper.hidden {
    display: none !important;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, 
        rgba(20, 184, 166, 0.2) 0%, 
        rgba(20, 184, 166, 0.8) 100%);
    position: relative;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDotMove 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes scrollDotMove {
    0% {
        top: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 60px;
        opacity: 0;
    }
}

/* ============================================
   SCROLL INDICATOR - RESPONSIVE
   ============================================ */

/* Desktop - COMPLETAMENTE OCULTO */
@media (min-width: 769px) {
    .scroll-indicator-wrapper {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Móvil - VISIBLE con padding reducido */
@media (max-width: 768px) {
    .scroll-indicator-wrapper {
        display: flex !important;
        visibility: visible !important;
        padding: 2rem 0 !important;
        background: var(--bg-dark) !important;
    }
}

/* ============================================
   SECCIONES OCULTAS - NO OCUPAR ESPACIO
   ============================================ */

section[style*="display: none"],
.section-alt[style*="display: none"] {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
}

/* ============================================
   ESPACIADO CONSISTENTE
   ============================================ */

section {
    padding: 5rem 2rem;
}

.hero-slider {
    padding: 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }
    
    .hero-slider {
        padding: 0;
    }
}

