body {
    font-family: 'Poppins', sans-serif;
    max-width: 1280px;
    margin: 0 auto;
}

main:after {
    content: '';
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.05926120448179273) 50%, rgba(0, 0, 0, 1) 90%);
    z-index: -1;
}

.conteudo {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-evenly;
}

.info .logo {
    max-width: 350px;
    margin-bottom: 45px;
    margin-left: -28px;
}

.info .descricao {
    width: 49%;
    font-size: 24px;
    color: #ffffff;
    line-height: 30px;
}

.btns-carrossel {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns-carrossel .btn {
    background-color: #ffffff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    border-color: #ffffff;
}

.btns-carrossel .btn.selecionado {
    background-color: #8B0000;
}

.menu-lateral {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.menu-lateral ul {
    display: flex;
    flex-direction: column;
}

.menu-lateral .icon {
    width: 30px;
    filter: invert(1);
    transition: 0.3s ease-in-out;
}

.menu-lateral .icon:hover {
    transform: scale(1.2);
}

.carrossel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

#imgCapa {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.carrossel .img {
    width: 100%;
    height: 120vh;
    object-fit: cover;
    display: none;
    animation: mudarImg 0.7s;
}

.carrossel .img.ativa {
    display: block;
}

@keyframes mudarImg {
    from {
        opacity: 0.85;
    }
    to {
        opacity: 1;
    }
}

