

.carousel-container {
    overflow: hidden;
    padding-top: 84px;
    padding-bottom: 30px;
}

.carousel-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
}

.carousel img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Activa la primera imagen */
.carousel img:nth-child(1) {
    opacity: 1;
}