:root
{
    --azul: #2676bb;
    --laranja: #f16138;    
    --branco-gelo: #ffffff;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    box-sizing: border-box;
    margin: 0%;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Corrige possíveis elementos que estouram a largura */
* {
    box-sizing: border-box;
}

main {
    margin-top: 7%;
}

@media (max-width: 600px) {
    main {
        margin-top: 13%;
    }
}

/* HEADER________________________________________________________________ */
.cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffffc7;
    position: relative;
}

.logoHeader {

    margin-left: 1%;
    margin-bottom: -3.6%;
    width: 12%;
}

@media (max-width: 600px) {
    .logoHeader {
        width: 21%;
    }
}

/* Menu________________________ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 1s cubic-bezier(0.4,0,0.2,1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--azul);
}

.menu > ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    font-size: 1.2em;
    width: 100%;
}

.menu > ul > li {
    position: relative;
    margin-right: 20px;
    padding: 3%;
    color: var(--laranja);
}

.menu > ul > li:hover {
    background-color: var(--azul);
    color: rgb(255, 255, 255);
    transition-delay: 20ms;
}

.menu a {
    text-decoration: none;
    color: inherit;
    background: none;
    box-shadow: none;
    outline: none;
    padding: 3%;
}

body.menu-header-oculto header {
    top: -100px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }
    .menu > ul {
        display: none;
        flex-direction: column;
        background: var(--branco-gelo);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }
    .menu.menu-aberto > ul {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
    .menu > ul > li {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
}

.wppfix {
    position: fixed;
    bottom: 3%;
    right: 3%;
    width: 8.1%;
    max-width: 72px;
    z-index: 3;
    animation: wpp-bounce 1.4s cubic-bezier(.4,0,.2,1) infinite alternate;
}

@media screen and (max-width: 600px) {
    .wppfix {
        width: 18%;
        bottom: 3%;
        right: 3%;
    }
    
}

@keyframes wpp-bounce {
    0% { transform: translateY(0); }
    60% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(-4px) scale(1.02); }
}

/* RODAPE ________________________________________________________________ */
footer {
    background: var(--azul);
    color: #fff;
    padding: 3%;
    width: 100%;
}
.rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.logoFooter {
    width: 80px;
    margin-bottom: 10px;
}
.rodape p {
    margin: 0 0 8px 0;
    font-size: 60%;
    letter-spacing: 0.5px;
}

/* Estilo para a seção de redes sociais */
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.social ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.social li {
    display: flex;
    align-items: center;
}
.social a {
    color: #ffffff;
    font-size: 1.6em;
    background: none;
    border-radius: 50%;
    padding: 6px;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 0 0 #f16138;
}
.social a:hover, .social a:focus {
    color: #fff;
    background: #f16138;
    box-shadow: 0 0 0 4px #f1613833;
    transform: scale(1.12);
    text-decoration: none;
}