/* RESET Y ELIMINACIÓN DE ESPACIOS */
body {
    margin: 0;
    padding: 0;
}

.hero-spacer {
    display: none !important; /* Ocultar cualquier espaciador */
}

section:first-of-type,
.slider-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* SLIDER STYLES - SIN HUECO Y CON OVERLAY OSCURO */
.slider {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background: #000;
    margin-left: calc(-50vw + 50%); /* Centra y expande a pantalla completa */
    margin-top: 0; /* Sin margen superior */
    padding-top: 0; /* Sin padding superior */
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Overlay oscuro sobre cada imagen */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay oscuro sobre la imagen */
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(0,0,0,0.8); /* Fondo más oscuro del contenido */
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 20px;
    backdrop-filter: blur(3px); /* Más blur para mejor legibilidad */
    z-index: 2; /* Sobre el overlay de la imagen */
    position: relative;
}

.slide-content h1,
.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9); /* Sombra más fuerte */
    font-weight: 700; /* Texto más grueso */
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9); /* Sombra más fuerte */
    font-weight: 400;
}

.slide-btn {
    background: #2196F3; /* Azul principal */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); /* Sombra más pronunciada */
    font-weight: 600;
}

.slide-btn:hover {
    background: #1976D2; /* Azul más oscuro en hover */
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* FLECHAS CON FONDO OSCURO Y TEMA AZUL */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.nav-arrow:hover {
    background: rgba(0,0,0,0.9);
    border-color: #2196F3; /* Borde azul en hover */
    color: #2196F3; /* Texto azul en hover */
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #2196F3; /* Punto activo azul */
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5); /* Sombra azul */
}

/* Responsive - ALTURA REDUCIDA EN MÓVIL Y SIN HUECOS */
@media (max-width: 768px) {
    .slider {
        height: 60vh; /* Reducido de 100vh a 60vh */
        min-height: 350px; /* Reducido también el mínimo */
        margin-top: 0;
        padding-top: 0;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
        margin: 0 10px;
        background: rgba(0,0,0,0.85); /* Aún más oscuro en móvil */
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: 2rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,1); /* Sombra máxima en móvil */
    }
    
    .slide-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 4px rgba(0,0,0,1);
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 50vh; /* Aún más reducido en móviles pequeños */
        min-height: 300px;
        margin-top: 0;
    }
    
    .slide-content {
        padding: 1rem 0.5rem;
        background: rgba(0,0,0,0.9); /* Máximo contraste en móviles pequeños */
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: 1.7rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}