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

body{
    background-color: #dfdfdf;
    font-family: "Poppins", sans-serif;
    margin: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

* {
    -webkit-tap-highlight-color: transparent;
}

input, select, button{
    font-family: "Poppins", sans-serif;
}

main::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.img_header{
    height: 90%;
    cursor: pointer;
}

.img_logo_texto{
    width: 160px;
    height: 85%;
}

@media(max-width: 400px){
    .img_header{
        height: 80%;
        cursor: pointer;
    }

    .img_logo_texto{
        width: auto;
    }
}

header{
    background-color: #FAFAFA;
    height: 80px;
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

footer{
    background-color: #2c3e50;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.texto_footer{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.icone_footer{
    font-size: 22px;
}

.div_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 100px;
    cursor: pointer;
}

.icone_header{
    font-size: 22px;
    color: white;
    background-color: black;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

.mostrar{
    display: flex;
}

.mostrar_menu{
    right: 0;
}

.sumir_menu{
    right: -100%;
}

.sumir{
    display: none;
}

.menu_lateral{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 80px;
    background-color: #dfdfdf;
    transition: 0.3s ease-in;
    z-index: 1010;
}

.texto_menu{
    background: white;
    padding: 0.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
    cursor: pointer;
    margin: 0.5rem;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 500;
}

.container_menu{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 1rem;
}