@charset "utf-8";
/* =========================================================
   CONTATO / CADASTRO
========================================================= */

.contato{
    width:100%;
    padding:90px 0;
    background:#f4ead6;
    overflow:hidden;
}

.contato-container{
    width:88%;
    max-width:1500px;
    margin:0 auto;
}

/* TOPO */

.contato-topo{
    display:grid;
    grid-template-columns:180px 1fr 1fr;
    gap:50px;
    align-items:start;
    margin-bottom:60px;
}

.contato-label{
    color:#c7a15e;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:13px;
    line-height:1.4;
    letter-spacing:5px;
    text-transform:uppercase;
    padding-top:18px;
}

.contato-topo h2{
    color:#00263f;
    font-family:'Crosever', serif;
    font-size:62px;
    line-height:1.05;
    font-weight:normal;
    padding-left:38px;
    border-left:1px solid rgba(199,161,94,.7);
    margin:0;
}

.contato-texto{
    padding-top:10px;
}

.contato-texto p{
    color:#00263f;
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

/* CONTEÚDO */

.contato-conteudo{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:45px;
    align-items:stretch;
}

.contato-info{
    background:#00263f;
    border-radius:18px;
    padding:50px 42px;
}

.contato-info h3{
    color:#f4ead6;
    font-family:'Crosever', serif;
    font-size:42px;
    line-height:1.1;
    font-weight:normal;
    margin:0 0 24px 0;
}

.contato-info p{
    color:rgba(255,255,255,.88);
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:17px;
    line-height:1.8;
    margin:0 0 28px 0;
}

.contato-info ul{
    margin:0;
    padding:0;
    list-style:none;
}

.contato-info li{
    color:#f4ead6;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:15px;
    line-height:1.5;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:16px;
    padding-left:28px;
    position:relative;
}

.contato-info li:before{
    content:"";
    width:8px;
    height:8px;
    background:#c7a15e;
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;
}

/* FORM */

.form-card{
    background:#ffffff;
    border-radius:18px;
    padding:50px 42px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.form-card h4{
    color:#00263f;
    font-family:'Crosever', serif;
    font-size:42px;
    line-height:1.1;
    font-weight:normal;
    margin:0 0 32px 0;
}

.form-card form{
    width:100%;
}

.hp{
    display:none !important;
}

.label{
    display:block;
    color:#00263f;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.form-card input[type="text"],
.form-card input[type="tel"],
.form-card input[type="email"]{
    width:100%;
    height:54px;
    border:1px solid rgba(0,38,63,.18);
    background:#f4ead6;
    color:#00263f;
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:16px;
    padding:0 16px;
    margin-bottom:20px;
    border-radius:8px;
    box-sizing:border-box;
    outline:none;
}

.form-card input:focus{
    border-color:#c7a15e;
}

.telefone-linha{
    display:flex;
    gap:10px;
}

.telefone-linha input:first-child{
    width:85px;
    flex:none;
}

.telefone-linha input:last-child{
    flex:1;
}

.checkline{
    display:flex;
    align-items:center;
    gap:10px;
    color:#00263f;
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:15px;
    line-height:1.4;
    margin:4px 0 26px 0;
}

.checkline input{
    width:18px;
    height:18px;
    margin:0;
}

.form-card button{
    width:100%;
    height:58px;
    border:none;
    background:#00263f;
    color:#f4ead6;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.form-card button:hover{
    background:#c7a15e;
    color:#00263f;
}

.form-note{
    color:#00263f;
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:13px;
    line-height:1.5;
    margin:18px 0 0 0;
    opacity:.8;
}

/* TABLET */

@media screen and (max-width:1100px){

    .contato-topo{
        grid-template-columns:1fr;
        gap:20px;
    }

    .contato-topo h2{
        border-left:none;
        padding-left:0;
        font-size:42px;
    }

    .contato-label{
        padding-top:0;
    }

    .contato-conteudo{
        grid-template-columns:1fr;
    }
}

/* MOBILE */

@media screen and (max-width:768px){

    .contato{
        padding:70px 0;
    }

    .contato-container{
        width:88%;
    }

    .contato-topo h2{
        font-size:34px;
    }

    .contato-texto p{
        font-size:16px;
    }

    .contato-info,
    .form-card{
        padding:35px 26px;
    }

    .contato-info h3,
    .form-card h4{
        font-size:32px;
    }

    .contato-info p{
        font-size:16px;
    }

    .contato-info li{
        font-size:13px;
    }

    .telefone-linha{
        gap:8px;
    }

    .telefone-linha input:first-child{
        width:75px;
    }

    .form-card button{
        font-size:12px;
        letter-spacing:2px;
    }
}

.contato-logo{
    width:280px;
    max-width:100%;
    display:block;
    margin-bottom:30px;
}

.contato-whats{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:34px;
    color:#f4ead6;
    text-decoration:none;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:30px;
    letter-spacing:2px;
}

.contato-whats img{
    width:42px;
    height:42px;
    display:block;
}

.contato-social{
    display:flex;
    gap:18px;
    margin-top:28px;
}

.contato-social a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(244,234,214,.45);
    border-radius:50%;
    transition:.3s;
}

.contato-social a:hover{
    background:#c7a15e;
    border-color:#c7a15e;
}

.contato-social img{
    width:22px;
    height:22px;
    display:block;
}

@media screen and (max-width:768px){

    .contato-whats{
        font-size:24px;
    }

    .contato-whats img{
        width:36px;
        height:36px;
    }

}
/* CSS Document */

