/* =========================================================
   FALE CONOSCO
   ========================================================= */

.contato-page {
    background: var(--background);
}

.contato-section {
    padding: 45px 0 45px;
}

.contato-row {
    margin-top: 55px;
}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.contato-info {
    height: 100%;

    padding: 38px;

    border-radius: 8px;

    background: var(--moreschi);

    color: white;
}

.contato-label {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 1.4px;
}

.contato-info .contato-label {
    color: rgba(255, 255, 255, .75);
}

.contato-info h2 {
    margin: 0 0 18px;

    font-size: 28px;
    font-weight: 400;
}

.contato-intro {
    margin-bottom: 34px;

    color: rgba(255, 255, 255, .88);

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;
}


/* =========================================================
   ITEM DE CONTATO
   ========================================================= */

.contato-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 25px;
}

.contato-icone {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

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

    font-size: 17px;
}

.contato-item span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, .65);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1px;
}

.contato-item a {
    color: white;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.7;

    text-decoration: none;
}

.contato-item a:hover {
    color: white;

    text-decoration: underline;
}


/* =========================================================
   BOTÃO WHATSAPP
   ========================================================= */

.contato-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: 12px;

    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 5px;

    color: white;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .5px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.contato-whatsapp:hover {
    background: white;

    color: var(--moreschi);

    text-decoration: none;
}


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

.contato-form-card {
    height: 100%;

    padding: 38px;

    border: 1px solid #e4e4e7;
    border-radius: 8px;

    background: white;
}

.contato-form-card .contato-label {
    color: var(--moreschi);
}

.contato-form-card h2 {
    margin: 0 0 30px;

    color: var(--text);

    font-size: 28px;
    font-weight: 400;
}

.contato-form-card label {
    margin-bottom: 7px;

    color: #555;

    font-size: 12px;
    font-weight: 400;
}

.campo-opcional {
    margin-left: 5px;

    color: #aaa;

    font-size: 10px;
    font-weight: 300;
}

.contato-form-card .form-control {
    min-height: 46px;

    border: 1px solid #dcdce0;
    border-radius: 5px;

    color: #444;

    background: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 300;

    box-shadow: none;

    transition: border-color .2s ease;
}

.contato-form-card textarea.form-control {
    min-height: 145px;

    resize: vertical;
}

.contato-form-card .form-control:focus {
    border-color: var(--moreschi);

    box-shadow: none;
}


/* =========================================================
   BOTÃO ENVIAR
   ========================================================= */

.btn-enviar-contato {
    min-width: 190px;

    margin-top: 7px;

    padding: 13px 22px;

    border: 0;
    border-radius: 5px;

    color: white;

    background: var(--moreschi);

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .5px;

    cursor: pointer;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.btn-enviar-contato:hover {
    opacity: .9;

    transform: translateY(-1px);
}

.btn-enviar-contato:disabled {
    opacity: .6;

    cursor: default;

    transform: none;
}


/* =========================================================
   MENSAGEM
   ========================================================= */

.contato-mensagem {
    margin: 0 0 18px;

    padding: 12px 15px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.6;
}

.contato-mensagem.erro {
    border: 1px solid #e7c5c5;

    color: #8c3e3e;

    background: #fff4f4;
}

.contato-mensagem.sucesso {
    border: 1px solid #c7dfcb;

    color: #396d40;

    background: #f3faf4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .contato-section {
        padding: 45px 0 45px;
    }

    .contato-info,
    .contato-form-card {
        padding: 32px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .contato-section {
        padding: 45px 0 45px;
    }

    .contato-row {
        margin-top: 40px;
    }

    .contato-info,
    .contato-form-card {
        padding: 27px 22px;
    }

    .contato-info h2,
    .contato-form-card h2 {
        font-size: 24px;
    }

    .btn-enviar-contato {
        width: 100%;
    }

}