@font-face {
    font-family: 'Neo';
    src: url('/assets/neosans.woff2') format('woff2');
}
body, html{
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Neo';
    scroll-behavior: smooth;
    min-height: 100vh;
}
a{
    text-decoration: none;
    color: black;
}
header{
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: white;
    z-index: 1;
}
#headerLogo{
    margin-left: 40px;
    width: 160px;
    height: 40px;
}
#headerButtons{
    display: flex;
    margin-left: auto;
    margin-right: 40px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.buttons{
    text-decoration: none;
    color: #de0000;
    font-size: 20px;
    transition: 0.2s;
}
.buttons:hover{
    color: #8e0000;
    transform: scale(1.1);

}
#titulo{
    margin-top: 20px;
    text-align: center;
    font-size: 24px;
}
#formasContato{
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin-bottom: 36vh;
}
.contatoDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 220px;
    border: 1px solid rgb(197, 190, 190);
    border-radius: 5px;
    transition: 0.2s;
}
.contatoDiv:hover{
    transform: scale(1.02);
}
.contatoImg{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 40px;
    height: 40px;
    padding: 20px;
    /* background-color: rgb(243, 242, 239);
    border: 1px solid rgb(243, 242, 239); */
    background-color: rgb(227 51 47);
    border: 1px solid rgb(227 51 47);
    border-radius: 10px;
    margin-bottom: 15px;
}
.contatoImgTexto{
    margin: 0;
    margin-top: 5px;
    display: flex;
    justify-content: center;
}
#contatoDivForm, #localizacao{
    width: 100%;
    height: auto;
}
#localizacao h1, #contatoDivForm h1{
    text-align: center;
    margin-top: 100px;
}
#localizacaoMapa{
    width: 650px;
    height: 450px;
    border: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
#localizacaoInfos{
    padding-top: 15px;
    width: 650px;
    box-shadow: 0px 5px 10px rgb(197, 190, 190);
    margin-left: auto;
    margin-right: auto;
}
#localizacaoInfos img{
    margin-left: 10px;
}
.localizacaoDivTexto{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.localizacaoTexto{
    margin: 0;
}
.contatoInputs{
    width: 450px;
    padding: 6px;
    border: 1px solid rgb(197, 190, 190);
    border-radius: 5px;
    margin-bottom: 20px;
    resize: none;
    outline: none;
    transition: 0.2s;
}
.contatoInputs:hover{
    border: 1px solid #de0000;
}
main{
    flex: 1;
}
footer {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
footer p{
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 800px){
   #headerLogo{
        margin-left: 20px;
        width: 100px;
        height: 25px;
   }
   #headerButtons{
        margin-right: 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        height: 100%;
    }
    .buttons{
        font-size: 14px;
    }
    #titulo{
        font-size: 10px;
    }
    #contato{
        gap: 10px;
    }
    .contatoDiv{
        width: 150px;
        height: 150px;
    }
    .contatoImg{
        width: 20px;
        height: 20px;
    }
    .contatoImgTexto{
        font-size: 10px;
    }
    #localizacaoMapa{
        width: 350px;
        height: 300px;
        border: 0;
    }
    #localizacaoInfos{
        padding-top: 15px;
        width: 350px;
    }
}