/* CAROUSEL DE VÍDEOS */

#carouselAMOS,
#carouselAMOS .carousel-item {
    height: 100vh;
}

#carouselAMOS video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Escurece o vídeo */
#carouselAMOS .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Legenda */
#carouselAMOS .carousel-caption {
    z-index: 2;
    bottom: 25%;
}

#carouselAMOS .hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align:center;
}

#carouselAMOS .hero-content h2 {
    color: #fff;
    font-size: 2rem;
    text-align:center;
}

#carouselAMOS .hero-content p,
#carouselAMOS .hero-content strong {
    color: #fff;
    text-align:center;
}

/* Responsivo */
@media (max-width: 768px) {

    #carouselAMOS,
    #carouselAMOS .carousel-item,
    #carouselAMOS video {
        height: 70vh;
    }

    #carouselAMOS .hero-content h1 {
        font-size: 1.8rem;
    }

    #carouselAMOS .hero-content h2 {
        font-size: 1.3rem;
    }

    #carouselAMOS .hero-content p {
        font-size: 0.9rem;
    }
}