.background-images {
    display: flex;
    height: 100%;
}

.background-image {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.background-image:first-child {
    opacity: 1; /* Inicialmente, a primeira imagem Ã© visÃ­vel */
}
