body {
    font-family: arial;
    margin: 0;
    color: white;
    background-color: #102257;
}


.esquerda {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
    padding-left: 10px;
    flex: 1 1 0%;
    margin: 0;
}


.direita {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 0px;
    padding-right: 10px;
    flex: 1 1 0%;
    margin: 0;
}


.divisa {
    display: flex;
    width: 100%;
    min-height: 100px;
    background-color: grey;
    margin: 0;
    transition: all 0.3s ease-in-out;
}


.but {
    width: 100px;
    height: 50px;
    background-color: #183382;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


header {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    background-color: #212121;
    margin: 0;
    height: 70px;
    width: 100%;
    z-index: 100;
    align-items: center;
}


header h1 {
    white-space: nowrap;
}


header a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}


header hr {
    width: 5px;
    height: 30px;
    background-color: grey;
    border: none;
    margin: 0;
    flex-shrink: 0;
}


.uau {
    width: 5px;
    height: 30px;
    background-color: grey;
    border: none;
    margin: 0;
}


header a:hover {
    text-decoration: underline;
    color: #eb650c;
}


.divisa:hover {
    transform: translateY(-3px);
}


.but:hover {
    text-decoration: underline;
    color: #eb650c;
    cursor: pointer;
}


/* =========================================
   PORTE PARA CELULAR
   Mantém o estilo original
   ========================================= */

@media (max-width: 700px) {

    header {
        position: fixed;
        height: auto;
        min-height: 70px;
        padding: 10px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header h1 {
        width: 100%;
        text-align: center;
        font-size: 24px;
        margin: 0;
    }

    header a {
        font-size: 16px;
    }

    header hr {
        height: 22px;
    }


    .divisa {
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }


    .esquerda {
        padding: 20px 15px;
        box-sizing: border-box;
        width: 100%;
        align-items: flex-start;
    }


    .direita {
        padding: 20px 15px;
        box-sizing: border-box;
        width: 100%;
        align-items: center;
    }


    .direita img {
        max-width: 80vw;
        max-height: 80vw;
        width: 300px;
        height: 300px;
    }


    .esquerda h1 {
        font-size: 28px;
    }


    .esquerda h3 {
        font-size: 20px;
    }


    .esquerda p {
        font-size: 18px;
    }


    /* Páginas internas */

    body > div[style*="padding-top"] {
        padding-top: 130px !important;
        padding-right: 15px;
    }


    body > div[style*="padding-top"] h1 {
        font-size: 28px;
    }


    body > div[style*="padding-top"] h2 {
        font-size: 20px;
    }


    body > div[style*="padding-top"] li {
        font-size: 17px;
        margin-bottom: 8px;
    }


    .uau {
        height: 5px;
        width: 30px;
    }
}