@font-face {
    font-family: "GOT";
    src: url(../fonts/GOT.ttf);
}

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

body {
    max-width: 1280px;
    margin: 0 auto;

    font-family: "Poppins", sans-serif;
}

.carrossel {
    width: 100%;
    z-index: -1;

    position: fixed;
    top: 0;
    left: 0;
}

.conteudo {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.informacoes {
    display: none;
}

.informacoes.ativa {
    display: block;
}

.informacoes h1 {
    font-family: "GOT";
    font-size: 35px;
    margin-bottom: 80px;
    letter-spacing: 8px;
}

.informacoes .descricao {
    height: 300px;
    width: 49%;
    font-size: 24px;
    line-height: 40px;
    overflow: auto;
    padding-right: 15px;
}

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

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

.botoes-carrossel .botao.selecionado {
    background-color: #1d8346;
}

.imagem {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    display: none;
}

.imagem.ativa {
    display: block;
    animation: mudarImagem 0.7s;
}

main::after {
    content: "";
    min-height: 100vh;
    width: 100vw;

    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 0.05926120448179273) 50%,
        rgba(0, 0, 0, 1) 90%
    );
}
