* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.carrossel-container {
    position: relative;
    max-width: 400px;
    height: 900px;
    border-radius: 15px;
    /* background-color: white; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    /* Espaço para as bolinhas e setas abaixo */
}

/* Estilos para os slides (imagens de feedback) */
.carrossel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
}

/* Botões de navegação */
.prev,
.next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    /* Coloca as setas na frente */
}

.prev {
    left: -50px;
    /* Move a seta para fora da imagem */
}

.next {
    right: -50px;
    /* Move a seta para fora da imagem */
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Bolinhas indicativas */
.indicators {
    text-align: center;
    position: relative;
    margin-top: 20px;
    /* Coloca as bolinhas fora do contêiner do carrossel */
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}


@media (max-width: 1200px) {
    .carrossel-container {
        height: 700px;
    }

    .slide img {
        height: auto;
        max-height: 700px;
        object-fit: contain;
    }


}

@media (max-width: 500px) {
    .carrossel-container {
        height: 700px;
    }

    .prev {
        left: -10px;
    }

    .next {
        right: -10px;
    }

    .slide img {
        height: auto;
        max-height: 700px;
        object-fit: contain;
    }


}