/* Banner Slider Styles */
.bannerSlider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 40px;
    background-color: #000;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.hidden {
    opacity: 0;
    z-index: 0;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    z-index: 2;
    color: white;
    text-align: left;
}

.slide-text-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.1;
}

.slide-text-sinopsis {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 300;
}

.slide-actions {
    margin-top: 30px;
}

.slide-button {
    background-color: #e50246;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(229, 2, 70, 0.4);
}

.slide-button:hover {
    background-color: #c50239;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 2, 70, 0.6);
}

.slide-button:active {
    transform: translateY(0);
}

/* Controles del slider */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Indicadores */
.slide-indicators {
    display: flex;
    gap: 10px;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slide-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slide-indicator.active {
    background-color: white;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .bannerSlider {
        height: 500px;
    }
    
    .slide-content {
        width: 85%;
    }
    
    .slide-text-title {
        font-size: 2.5rem;
    }
    
    .slide-text-sinopsis {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .slide-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
