#bannerCarousel,
#bannerCarousel .carousel-inner,
#bannerCarousel .carousel-item {
    height: calc(100vh - 100px);
    background-color: black;
}

#bannerCarousel img {
    width: 350px;
    height: 140px;
    object-fit: cover;
}
#bannerCarousel video {
    
    object-fit: cover;
    overflow: hidden;
}



.carousel-item {
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1;
}


.carousel-indicators {
    position: absolute;
    bottom: 50px;
    right: 100px;
    left: auto;
    margin: 0;

    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Estilo barra */
.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: white;
    opacity: 0.5;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    width: 50px; /* efecto activo más largo */
}


#gaia {
    background-image: url("/static/images/index/MB-homepage-section2-background-min.webp");
    background-size: cover;        /* que cubra todo */
    background-position: center;   /* centrada */
    background-repeat: no-repeat;  /* sin repetir */
    min-height: 450px;
    max-height: 700px;
    color: white;
}

#gaia p{
    font-size: 16px;
}

.custom-button-border-white{
    border: solid 1px white;
}




.carousel-caption img{
    max-width: 100%;
    width: 100%;
    height: auto;
    overflow-x: visible;
}


@media (min-width: 768px) {
    #bannerCarousel video {
        height: 100%;
        object-fit: cover;
        overflow: hidden;
    }
}