/* =========================================================
   TRABALHE CONOSCO
   ========================================================= */

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

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

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


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

.trabalhe-info {
    height: 100%;

    padding: 38px;

    border-radius: 8px;

    background: var(--moreschi);

    color: white;
}

.trabalhe-label {
    display: inline-block;

    margin-bottom: 12px;

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

    letter-spacing: 1.4px;
}

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

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

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

.trabalhe-intro {
    margin-bottom: 35px;

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

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

    line-height: 1.8;
}


/* =========================================================
   ITENS
   ========================================================= */

.trabalhe-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 25px;
}

.trabalhe-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;
}

.trabalhe-item span {
    display: block;

    margin-bottom: 4px;

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

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

    letter-spacing: 1px;
}

.trabalhe-item p {
    margin: 0;

    color: white;

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

    line-height: 1.7;
}


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

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

    padding: 38px;

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

    background: white;
}

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

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

    color: var(--text);

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

.trabalhe-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;
}

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

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

    color: #444;

    background: white;

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

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

    box-shadow: none;

    transition: border-color .2s ease;
}

.trabalhe-form-card textarea.form-control {
    min-height: 165px;

    resize: vertical;
}

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

    box-shadow: none;
}


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

.btn-enviar-trabalhe {
    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-trabalhe:hover {
    opacity: .9;

    transform: translateY(-1px);
}

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

    cursor: default;

    transform: none;
}


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

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

    padding: 12px 15px;

    border-radius: 5px;

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

    line-height: 1.6;
}

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

    color: #8c3e3e;

    background: #fff4f4;
}

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

    color: #396d40;

    background: #f3faf4;
}


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

@media (max-width: 991px) {

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

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

}


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

@media (max-width: 767px) {

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

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

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

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

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

}