/* ------------------------- */
/* ESTILOS GERAIS E FONTES   */
/* ------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181715;
    color: #dcd6d6;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ------------------------- */
/* CONTAINER PRINCIPAL       */
/* ------------------------- */
.container-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ------------------------- */
/* TEXTOS E TÍTULOS          */
/* ------------------------- */
.titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 1;
    /* Ajustado para melhor alinhamento */
    text-align: center;
    color: #dcd6d6;
    text-shadow: 0 0 10px #87d5d8;
    margin-bottom: 80px;
}

.titulo-destaque {
    color: #b21400;
}

.subtitulo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #dcd6d6;
    text-align: center;
    line-height: 40px;
    text-shadow: 2px 2px 6px rgba(253, 11, 5, 0.5);
}

/* ------------------------- */
/* BOTÃO DISCORD             */
/* ------------------------- */
.botao-discord {
    display: inline-block;
    /* Permite definir largura e margens */
    width: 205px;
    padding: 12px;
    margin-top: 20px;
    background-color: #5d89d2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    border-radius: 1rem;
    /* 16px */
    box-shadow: 0 0 10px 0 #5271ff;
    transition: transform 0.2s ease;
    /* Efeito suave ao passar o mouse */
}

.botao-discord:hover {
    transform: scale(1.05);
    /* Aumenta um pouco o botão */
}

/* ------------------------- */
/* RODAPÉ                    */
/* ------------------------- */
.container-rodape {
    text-align: center;
    padding-top: 50px;
    /* O padding-bottom original era muito grande, ajustei para um valor mais comum. */
    /* Se quiser o espaçamento gigante original, use: padding-bottom: 500px; */
    padding-bottom: 50px;
}

.copyright {
    font-size: 16px;
    line-height: 24px;
    color: #dcd6d6;
    /* Ajustado para ser visível no fundo escuro */
    margin-bottom: 16px;
}

.links-rodape {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* Espaçamento entre os links */
    font-size: 14px;
    color: #747474;
}

.links-rodape a {
    color: #747474;
    transition: color 0.2s;
}

.links-rodape a:hover {
    color: #dcd6d6;
}


/* ------------------------- */
/* AJUSTES PARA TELAS MENORES*/
/* (RESPONSIVIDADE)          */
/* ------------------------- */

/* Telas de Tablet */
@media screen and (max-width: 1024px) {
    .container-principal {
        padding-top: 100px;
    }

    .titulo {
        font-size: 100px;
        /* Mantido conforme original */
    }

    .subtitulo {
        font-size: 20px;
    }
}

/* Telas de Celular */
@media screen and (max-width: 480px) {
    .container-principal {
        padding-top: 50px;
    }

    .titulo {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .subtitulo {
        font-size: 17px;
        line-height: 30px;
    }

    .botao-discord {
        font-size: 25px;
    }

    .copyright {
        font-size: 14px;
    }

    .links-rodape {
        font-size: 12px;
        flex-direction: column;
        /* Coloca os links um embaixo do outro */
    }

    .links-rodape span {
        display: none;
        /* Esconde o separador "|" em telas pequenas */
    }
}