.contato-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 8rem 2rem;

    background-image:
        url("../img/contato/hero-contato.jpg");        

    background-position: center top;

    background-repeat: no-repeat;

    background-size: cover;

}

.contato-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.60);

}
.contato-container {
   position: relative;
   z-index: 2;
   max-width: 900px;

}

.contato-tag {

    display: inline-block;

    margin-bottom: 1rem;

    letter-spacing: .20rem;

    color: var(--accent-color);

}

.contato-hero h1 {

    font-size: clamp(3rem, 6vw, 5rem);

    margin-bottom: 1rem;

}

.contato-hero p {

    font-size: 1.25rem;

    color: var(--text-secondary);

    line-height: 1.7;

}

@media (max-width: 768px){

    .contato-hero h1{

        font-size: 3.2rem;

        line-height: 1.1;

    }

    .contato-hero p{

        max-width: 320px;

        margin: 0 auto;

        font-size: 1.15rem;

    }

}

@media (min-width: 1024px){

    .contato-hero{

        background-size: contain;

        background-position: center top;

        background-color: #111;

    }

    .contato-container{

        max-width: 650px;

        margin: 0 auto;

    }

    .contato-hero h1{

        font-size: 4rem;

        line-height: 1.1;

    }

}

/* ========================================= */
/* FORMULÁRIO */
/* ========================================= */

.lead-form-section {

    padding: 6rem 0;

    background: #0f0f0f;

    text-align: center;

}

.lead-form-section h2 {

    margin-bottom: 1rem;

}

.lead-form {

    max-width: 500px;

    margin: 3rem auto 0;

    display: flex;

    flex-direction: column;

    gap: 1rem;

}

.lead-form input {

    padding: 1rem;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    color: #fff;

}

.lead-form button {

    background: var(--accent-color);

    color: #000;

    border: none;

    padding: 1rem;

    border-radius: 999px;

    cursor: pointer;

    font-weight: 600;

}

/* ========================================= */
/* WHATSAPP */
/* ========================================= */

.whatsapp-section {

    padding: 6rem 0;

    text-align: center;

}

.btn-whatsapp {

    display: inline-block;

    margin-top: 2rem;

    padding: 1rem 2rem;

    border-radius: 999px;

    text-decoration: none;

    background: #25D366;

    color: white;

    font-weight: 600;

}

/* ========================================= */
/* INSTAGRAM */
/* ========================================= */

.instagram-section {

    padding: 6rem 0;

    background: #0f0f0f;

    text-align: center;

}

.btn-instagram {

    display: inline-block;

    margin-top: 2rem;

    padding: 1rem 2rem;

    border-radius: 999px;

    text-decoration: none;

    background: linear-gradient(
        45deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );

    color: white;

    font-weight: 600;

}

/* ==========================================
   CAMPOS FORMULÁRIO
========================================== */
/* ==========================================
   NOVOS CAMPOS
========================================== */

.lead-form select,
.lead-form textarea {

    width: 100%;

    padding: 1rem;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    color: #fff;
}

.lead-form textarea {

    resize: vertical;

    min-height: 120px;
}

/* ==========================================
   SELECT - CORREÇÃO
========================================== */

.lead-form select {

    color: #ffffff;

}

.lead-form select option {

    background: #111111;

    color: #ffffff;

}

#formulario-contato {
    scroll-margin-top: 120px;
}

/*
.contact-illustration {

    display: block;

    width: 180px;

    max-width: 100%;

    margin: 0 auto 2rem auto;

}

*/

.contact-illustration {

    display: block;

    width: clamp(120px, 20vw, 220px);

    margin: 0 auto 2rem auto;

}