/* Estilos para el banner del slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 500px; /* Altura mínima para asegurar visibilidad */
    background-color: #0056b3; /* Color de fondo por defecto */
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay oscuro para mejorar legibilidad */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Estilos para los controles del slider */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}