

.container{
    box-sizing: border-box;
    max-width: 1400px;
    padding: 0px 20px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Poppins", sans-serif;

}
.cor-1{
    color: white;
}
.titulo-bg{
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-left: 100px;
}

.contato{
    display: grid;
    grid-template-columns: 3fr 5fr;
    margin-left: 100px;
}
.contato-dado, .contato-formulario{
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
.contato-dado{
    background-color: #0669AC;
    padding: 20px 60px 60px 25px;
    margin-bottom: 200px;
    border-radius: 8px 0 0 8px;
    
}
.contato-dado h3::after{
    content: "";
    display: inline-block;
    background-image: url('../../img-svg/svg/logo-menor.svg');
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    margin-top: 20px;
    margin-left: 8px;

}
.contato-dado h3{
    font-size: 24px;
    display: flex;
    align-items: center;
}
.contato-formulario{
    padding: 40px 60px 40px 60px;
    margin-bottom: 200px;
}
.contato-endereco{
    padding-top: 20px;
    padding-bottom: 20px;
}
.contato-endereco p{
    padding-left: 28px;
}
.contato-endereco p:first-child{
    background-image: url('../../img-svg/Icons/geo-alt-fill.svg');
    background-repeat: no-repeat;
    background-position: 0 2px; 
    padding-left: 28px;
}
.email-ultimo{
    padding-bottom: 40px;
}
.contato-meios a{
    max-width: max-content;
    display: block;
    color: white;
    font-style: normal;
}
.contato-meios a{
    margin-bottom: 6px;
}

.contato-meios a{
    padding-left: 28px;
}
.contato-meios a:first-child{
    background-image: url('../../img-svg/Icons/envelope-fill.svg');
    background-repeat: no-repeat;
    padding-left: 28px;
    background-position: 0 4px; 
}
.padd{
    padding-bottom: 22px;
}
.contato-meios a:last-child{
    background-image: url('../../img-svg/Icons/telephone-fill.svg');
    background-repeat: no-repeat;
    padding-left: 28px;
    background-position: 0 2px; 
}


/*formulario*/

.form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form label{
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.form .col-2{
    grid-column: span 2;
}

.contato-formulario{
    border-radius: 0 8px 8px 0;
    width: 600px;
}

.form input[type="text"], .form input[type="email"], .form textarea{
    width: 100%;
    font-weight: 400px;
    border: 1px solid #ededed;
    background-color: #f7f7f7;
    font-family: "Roboto", sans-serif;
    padding: 14px;
    border-radius: 4px;
    box-sizing: border-box;
}
.form input[type="text"]:focus, .form input[type="email"]:focus, .form textarea:focus{
    outline: none;
    border-color: #035185;
    box-shadow: 0 0 0 1px #0669AC;
}
 
input::-webkit-input-placeholder{
    font-size: 15px;
}
textarea::-webkit-input-placeholder{
    font-size: 15px;
}
/*input radio*/
.line-2 p{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.input-radio{
    display: flex;
    gap: 0 180px;
    padding-bottom: 60px;
    padding-top: 60px;
    margin-left: -310px;
}
.inputt{
    display: flex;
    align-items: center;
    width: 180px;
    padding: 8px;
    border-radius: 4px;
    background-color: #f7f7f7;
    border: 1px solid #ededed;
    
}

.botao{
    padding: 12px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
    background-color: #59871D;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.botao:hover{
    cursor: pointer;
    background-color: #659626;

} 