.video-background {
    position: relative;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* Desactiva la interacción con el video */
}

.overlay-text {
    position: relative;
    z-index: 2;
}

.barra-bg-image {
    position: relative;
    background-image: url('/assets/img/pages/index/barra.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.barra-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color negro con 50% de opacidad */
    z-index: 1;
    pointer-events: none; /* Permite hacer clic a través del overlay */
}

.barra-bg-image > * {
    position: relative;
    z-index: 2;
}


.special-img-h {
    height: auto;
}
@media (min-width: 992px) {
    .special-img-lg-h {
        height: 450px;
    }
}