/*BANNER*/
/* Estilos para o banner */
#banner {
    position: relative;
    width: 80%;
    height: auto;
    margin: 0 auto;
    margin: 1%;
    overflow: hidden;
}

/* Estilos para o contêiner de imagens */
#image-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

/* Estilos para as imagens individuais */
.image {
    flex: 0 0 100%;
    height: auto;
}

/* Media query para telas menores que 800px */
@media (max-width: 800px) {
    #banner {
        width: 100%; /* Define a largura do banner como 100% */
        margin: 0; /* Remove margens para ocupação total */
    }

    .image {
        width: 100%; /* Garante que as imagens ocupem 100% da largura */
    }
}

/* Estilos para as setas de navegação */
#prev, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3vw;
    cursor: pointer;
}

#prev {
    left: 0;
}

#next {
    right: 0;
}

/* Estilos para a paginação (círculos) */
#pagination {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #eeeded;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    margin-top: 2%;
    margin-bottom: 2%;
}

.dot.active {
    background-color: #c79f00;
    width: 50px;
    height: 10px;
    border-radius: 20px;
    margin-top: 2%;
    margin-bottom: 2%;
}

/* Estilos adicionais para telas menores */
@media (max-width: 800px) {
    #controls, #pagination {
        display: none;
    }

    .image {
        width: 100%;
    }
}
