:root {

    /* Fonte */

    --fonte: 'Inter', sans-serif;
    --fonte-pequena: 400;
    --fonte-normal: 500;
    --fonte-grande: 700;

    /* Tamanho de fontes */

    --fonte-titulos: 1.75rem;
    /* 20px */
    --fonte-titulo-card: 1rem;
    /* 16px */
    --fonte-barra-navegacao: 1rem;
    /* 16px */
    --fonte-titulo-secao: 1.5rem:
        /* 24px */
        --fonte-rodape: 0.8125rem;
    /* 13px */
    --fonte-textos: 0.8125rem;
    /* 13px */

    /* Cor das fontes */

    --fonte-branca: #FFFFFF;
    --fonte-preta: #212529;
    --fonte-verde: #DAFF01;
    --fonte-cinza-claro: #6C757D;


    /* Cores gerais */

    --barra-de-navegacao-fundo: #000000;
    --fundo-do-site: #F7F7F7;
    --fundo-botao-roxo: #9353FF;
    --fundo-botao-roxo-hover: #7f47df;
    --fundo-botao-hamburguer: #343A40;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte);
    font-weight: var(--fonte-normal);
    font-size: var(--fonte-tamanho-pequeno);
    background: var(--fundo-do-site);
}

.titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;

    font-size: var(--fonte-titulos);
}

/* Efeito fade textos */

.revelar-texto p {
    opacity: 0;
    transition: opacity 1s ease;
}

.revelar-texto p.show {
    opacity: 1;
}


/* Botao de voltar ao topo */

#btnVoltarAoTopo {
    display: none;
    /* Esconder o botão inicialmente */
    position: fixed;
    /* Posicionar o botão fixo na tela */
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background-color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    padding: 1rem;
}

#btnVoltarAoTopo:hover {
    background-color: #333;
}

#btnVoltarAoTopo {
    padding: 0;
    margin: 0;
}

.icone-botao-topo {
    color: var(--fonte-verde);
    font-size: 2.5rem;
}

.botao__topo-sombra {
    box-shadow: 3px 3px 35px 0px rgba(0, 0, 0, 0.44);
}

/* ScrollBar */

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #daff01 #fafafa;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #fafafa;
}

*::-webkit-scrollbar-thumb {
    background-color: #daff01;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

@media screen and (min-width: 768px) {
    #btnVoltarAoTopo {
        bottom: 30px;
        right: 30px;
    }
}

@media screen and (min-width: 1440px) {
    #btnVoltarAoTopo {
        bottom: 35px;
        right: 35px;
    }
}

@media screen and (min-width: 2040px) {
    #btnVoltarAoTopo {
        bottom: 45px;
        right: 45px;
    }
}