/* Estilos específicos para la página de inicio (home) */
.hero-banner {
    height: 100vh;
    min-height: 560px;
}

.hero-banner .hero-video {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
}

/* Asegurar que el contenido del hero esté sobre el video */
.hero-banner .container {
    position: absolute;
    z-index: 2;
    height: 100%;
}

.hero-banner .row.center-vh {
    height: 100%;
}

/* Contenido ubicado en esquina inferior izquierda */
.hero-banner .banner-content {
    color: #fff;
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    max-width: 620px;
    text-align: left;
}

.hero-banner .banner-content .title {
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
}

.hero-banner .banner-content p {
    font-size: clamp(14px, 2.2vw, 18px);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .hero-banner .banner-content {
        left: 20px;
        bottom: 20px;
        padding-right: 15px;
        padding-left: 15px;
        right: 20px;
        max-width: none;
    }

    .hero-banner .banner-content .title {
        font-size: clamp(20px, 6vw, 42px);
    }
}
