section.exibicao_imagens{
    display: none;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 50px 0 0;
    overflow-x: hidden;
}

.botoes_container{
    position: sticky;
    top: 40vh;
    z-index: 2;
    display: none;
}

.botoes_container > div{
    position: absolute;
    cursor: pointer;
    top: 90px;
    height: 100px;
    aspect-ratio: 1;
    opacity: 0.3;
    border-radius: 50%;
    transition: 0.5s;
    background: url('https://cdn-icons-png.flaticon.com/512/7543/7543114.png') no-repeat center / contain;
}

.botoes_container > div:hover{
    opacity: 0.8;
}

.seta_esquerda{
    left: 0;
    rotate: 180deg;
}

.seta_direita{
    right: 0;
}

.fechar{
    display: none;
}

.alerta{
    border-radius: 20px;
    background-color: var(--corbase3);
    padding: 2%;
    margin: 0 7%;
    margin-bottom: 50px;
}

.alerta h3{
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.alerta p{
    letter-spacing: 1px;
    font-size: 20px;
}

.container_exibicao{
    display: flex;
  overflow-x: hidden;
}

.container_exibicao img{
    width: 100%;
    transition: 1s;
}