@font-face {
    font-family: "TangoSans";
    src: url("../fonts/tangosans/TangoSans.ttf") format("truetype");
}

:root {
    --corPrincipal: #4367b3;
    --corTexto: #545454;
    --input-color: #e8e8e8;
    --verdeEscuro: #3c64b9;
}

body {
    overflow-x: hidden;
    overflow-x: hidden;
}

main {
    height: 600px;
    display: flex;
    height: auto;
    flex-direction: column;
    width: 100vw;
}

.banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.text_banner {
    width: 40%;
    text-align: center;
    margin-top: 4rem;
}

.text_banner h1 {
    font-size: 50px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
}

.text_banner h3 {
    font-size: 30px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 0 10rem;
}

.box__text p {
    line-height: 1.8rem;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    width: 600px;
}

.button_alert {
    color: #ffff;
    text-decoration: none;
    font-family: arial;
}

.button_alert:hover {
    color: #000000;
    text-decoration: none;
    font-family: arial;
}

.swal2-popup {
    font-size: 1.6rem !important;
    font-family: Georgia, serif;
}

.box__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 5rem;
}

.box__buttons a {
    background-color: var(--verdeEscuro);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center left .3rem;
    color: var(--input-color);
    font-family: Arial, Helvetica, sans-serif;
    height: 50px;
    text-decoration: none;
    text-align: center;
    width: 160px;
    border-radius: 10px;
    margin: 0.3rem;
}

.box__buttons p {
    padding: 1rem;
}

.candidato p {
    padding: .5rem;
}

.editais,
.downloads,
.listas {
    background-image: url('../image/icon/download.svg');
}

.inscricao {
    background-image: url('../image/icon/inscricao.svg');
}

.candidato {
    background-image: url('../image/icon/login.svg');
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .text_banner {
        width: 90%;
        margin-top: 2rem;
    }

    .text_banner h1 {
        font-size: 32px;
    }

    .text_banner h3 {
        font-size: 20px;
    }

    .box {
        flex-direction: column;
        padding: 0;
    }

    .box__text p {
        width: 90%;
        font-size: 14px;
    }

    .box__buttons {
        padding: 1rem 0 0 0;
        width: 100%;
        align-items: center;
    }

    .box__buttons a {
        width: 80%;
        font-size: 14px;
    }

    .box__buttons p {
        padding: 0.8rem;
    }
}