/* --- HERO SLIDER BANNER (1920 x 470 px) --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 470px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #000000;
    border-bottom: 2px solid #ed6726;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Superposici¨Žn de Informaci¨Žn del Slide */
.hero-content-box {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 10;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-box {
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 38px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 10px 24px;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-subtitle-box {
    background-color: #ed6726;
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 6px 24px;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-btn {
    display: inline-block;
    background-color: #d89000; /* Tono dorado/ocre */
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #ed6726;
}

/* Flechas Laterales de Navegaci¨Žn */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.hero-arrow:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.hero-arrow-prev {
    left: 0;
}

.hero-arrow-next {
    right: 0;
}

/* Indicadores de Progreso Estilo Reproductor */
.hero-progress-bars {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.progress-bar-item {
    position: relative;
    width: 45px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #ed6726;
}

/* Adaptabilidad a Pantallas Menores */
@media (max-width: 1200px) {
    .hero-slider-section {
        height: calc(100vw * (470 / 1920));
        min-height: 280px;
    }

    .hero-content-box {
        left: 8%;
    }

    .hero-title-box {
        font-size: 26px;
        padding: 6px 16px;
    }

    .hero-subtitle-box {
        font-size: 16px;
        padding: 4px 16px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 4px 14px;
    }
}