@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&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');

*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    color: #fff;
}

:root{
    --primary-color: #0d6aec;
    --secundary-color: white;
    --text-color: #424242;
}

body::-webkit-scrollbar {
    width: 8px;               
}

body::-webkit-scrollbar-track {
    background: white;  
}

body::-webkit-scrollbar-thumb {
    background-color: #0f61d3;    
    border-radius: 20px;
}

.efeito-txt-top{visibility: hidden;}

body{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(170deg, #0d6aec 50%, white);
    color: #424242;
    width: 100vw;
    font-family: "Host Grotesk", sans-serif;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

header{
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 30px;
    background-color: var(--primary-color);
}

.logo img{
    width: 40px;
}

menu{
    display: flex;
    align-items: center;
}

.nav-bar ul{
    display: flex;
    list-style-type: none;
}

.nav-bar{
    display: flex;
}

a{
    text-decoration: none;
}

.nav-bar>ul>a>li{
    margin: 0px 4px;
    padding: 10px 10px;
    border-radius: 10px;
    transition: .3s;
}

.back{
    display: flex;
    align-items: center;
    justify-content: center;
}

.back img{
    width: 12px;
    margin-right: 5px;
}

.nav-bar>ul>a>.contato:hover{
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 10px;
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
}

body> section{
    width: 90vw;
    min-height: 90vh;
    padding: 25px;
    margin-top: 100px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
}

section .titleForm h1{
    display: flex;
    align-items: center;
    justify-content: start;
    color: black;
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 10px;
}

section .titleForm h1>img{
    width: 40px;
    margin-left: 15px;
}

section .titleForm p{
    color: #424242;
    font-size: 15px;
    margin-bottom: 20px;
}

form .contato{
    width: 100%;
    height: 100%;
}

.contato div{
    margin: 30px 0px;
}

.contato  label{
    color: #757575;
    font-weight: bold;
}

.contato  input, textarea{
    width: 100%;
    height: 40px;
    border: 0px;
    border-bottom: 1px solid #757575;
    font-size: 18px;
    color: black;
}

textarea{
    height: 80px;
    font-weight: 600;
    resize: vertical;
}

textarea:focus-within{
    outline: none;
    border-bottom: 2px solid #0d6aec;
}

input:focus-within{
    outline: none;
    border-bottom: 2px solid #0d6aec;
}

.message1{
    color: #757575;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 20px;
}

form.contato .btnUp{
    width: 100%;
    color: white;
    background-color: #0d6aec;
    border: 0px;
    border-radius: 30px;
    margin-bottom: 20px;
    transition: .3s;
}

.btnUp:disabled{
    cursor: not-allowed;
    background-color: #0c54b8;
}

form.contato .btnUp:hover{
    cursor: pointer;
    background-color: #0F61D3;
}

.redeSocial{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redeSocial img{
    width: 35px;
    margin: 0px 8px;
    transition: 1s;
}

.redeSocial img:hover{
    cursor: pointer;
    position: relative;
    bottom: 5px;
}


/* Versão para Tabelts min:768 max: 992*/

@media screen and (min-width: 768px) {
    body> section{
        width: 50vw;
        min-height: 90vh;
        padding: 40px;
        margin: 100px 50px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
    }
}


/* Versão para laptops min: 900px*/

@media screen and (min-width: 900px) {
    header{
        position: fixed;
        z-index: 1;
        top: 0px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 5px 15em;
        background-color: var(--primary-color);
    }

    body> section{
        width: 45vw;
        min-height: 90vh;
        padding: 40px;
        margin: 100px 50px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
    }

    section .titleForm h1{
        display: flex;
        align-items: center;
        justify-content: start;
        color: black;
        font-weight: bold;
        font-size: 45px;
        margin-bottom: 10px;
    }
    
    section .titleForm h1>img{
        width: 45px;
        margin-left: 15px;
    }
}

/* Versão para Desktops min: 1050px*/

@media screen and (min-width: 1050px) {
    body> section{
        width: 40vw;
        min-height: 80vh;
        padding: 40px;
        margin: 100px 50px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
    }
}

/* Versão para Desktops min: 1440px*/

@media screen and (min-width: 1440px) {
    body> section{
        width: 35vw;
        min-height: 80vh;
        padding: 40px;
        margin: 100px 50px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
    }

    section .titleForm h1{
        display: flex;
        align-items: center;
        justify-content: start;
        color: black;
        font-weight: bold;
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    section .titleForm h1>img{
        width: 50px;
        margin-left: 15px;
    }
}

@media screen and (min-width: 1600px) {
    body> section{
        width: 26vw;
        min-height: 80vh;
        padding: 40px;
        margin: 100px 50px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.233);
    }
}