* {
    margin: 0 auto;
}

header {
    width: 100%;
    height: 15vh;
    background-color: #215ACC;
    display: flex;
    z-index: 9999;
    position: fixed;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
header span{
    font-size:2vw;
}
.logo {
    width: 10vw;
    display: flex;
    align-items: center;
    margin-left: 5%;
}
.logo  img{
    width:100%;
}

.menu-pc {
    display: flex;
    width: 70%;
    align-items: center;
    margin-right: 5%;
}
    .menu-pc div {
        height: 100%;
        display: flex;
        align-items: center;
    }
        .menu-pc div a {
            color: white;
            text-decoration: none;
            font-family: anton;
            font-size: 30px;
        }

            .menu-pc div a:hover {
                color: #ededed;
            }


.burguer,
.espaco-mobile {
    display: none;
}

.menu-lateral {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99999999;
}

    .menu-lateral.ativo {
        transform: translateX(0);
    }

.conteudo-menu {
    padding: 20px;
}

.cabecalho-menu {
    display: flex;
    align-items: center;
    flex-direction: row;
}

    .cabecalho-menu h2 {
        margin: 0;
        width: 85%;
    }

.botao-fechar {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.conteudo-menu ul {
    list-style: none;
    padding: 0;
}

.conteudo-menu li {
    margin: 15px 0;
}

.conteudo-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
}
    .conteudo-menu a:hover {
        color: #c0c0c0;
    }



.espaco-header {
    width: 100%;
    height: 15vh;
}














footer {
    width: 100%;
    height: 40vh;
    background-color: #eef2ff;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

    .footer-cima {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
        height: 75%;
        flex-direction: row;
    }

        .logo-footer {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
            width: 25%;
            height: 100%;
        }
            .logo-footer img {
                width: 65%;
            }

        .icones-perto-logo {    
            display: flex;
            align-items: center;
            font-size: 1.7vw;
        }
            .icones-perto-logo a {
                margin-right: 0.8vw;
                text-decoration: none;
                color: #689acb;
            }

        .links-footer {
            width: 25%;
            height: 100%;
            display: flex;
            align-items: center;
            font-size: 1.2vw;
        }
            .links-footer ul {
                padding: 0;
                margin: 0;
                list-style: none;
            }

            .links-footer ul li a {
                text-decoration: none;
                color: #333;
            }

            .links-footer ul li a:hover {
                text-decoration: underline;
            }

        .contato-footer {
            width: 25%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
        }
            .contato-footer p {
                padding: 0;
                margin: 0;
                color: #689acb;
                font-weight: bold;
                font-size: 1.1vw;
            }

            .contato-footer a {
                color: #689acb;
                font-weight: bold;
            }


    .footer-rodape {
        width: 70%;
        height: 25%;
        display: flex;
        align-items: center;
        flex-direction: row;
        font-size: 1vw;
        justify-content: space-between;
        border-top: 1px solid rgba(128, 128, 128, 0.276);
    }
        .footer-rodape p {
            margin: 0;
            padding: 0;
        }






























@media (max-width: 480px) {

    header {
        width: 100%;
        height: 18vw;
        display: flex;
    }

    .espaco-mobile {
        display: block;
        width: 40%;
    }

    .logo,
    .burguer {
        width: 30%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .botao-menu{
        width: 35%;
        height: auto;
    }

        .logo img {
            width: 70%;
            height: 80%;
        }

        .burguer img {
            width: 100%;
            aspect-ratio: 1/1;
        }

    .menu-pc {
        display: none;
    }

    .espaco-header {
        height: 18vw;
    }













    footer {
        width: 100%;
        height: auto;
    }

    .footer-cima {
        flex-direction: column;
        height: auto;
    }



    .logo-footer,
    .links-footer,
    .contato-footer,
    .footer-rodape {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .logo-footer {
        padding: 3vw 0;
    }
        .logo-footer img {
            width: 30%;
        }

    .icones-perto-logo {
        font-size: 3vw;
    }
        .icones-perto-logo a {
            margin-right: 1.5vw;
        }

    .links-footer {
        font-size: 3vw;
    }
        .links-footer ul {
            padding: 0;
        }

    .contato-footer{
        padding: 3vw 0;;
    }
        .contato-footer p{
            font-size: 3vw;
        }

    .footer-rodape {
        flex-direction: column;
        font-size: 2.5vw;
        padding: 3vw 0;
    }

}
