
.trabalhe-banner {
    position: relative;
    width: 100%;
    max-width: 1200px; 
    height: 320px; 
    background-position: center top;
    border-radius: 22px;
    margin: 40px auto 0 auto; 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding-left: 60px; 
    background-size: cover;
}

.trabalhe-banner__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.40); 
}

.trabalhe-banner__title {
    color: #fff;
    font-size: 46px; 
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    margin: 0;
}


.trabalhe-formulario {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.trabalhe-formulario__container {
    width: 100%;
    max-width: 1200px;
    background: #e9eaec;
    border-radius: 20px;
    padding: 40px;
}

.trabalhe-formulario__linha {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.trabalhe-formulario__input,
.trabalhe-formulario__select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 50px;
    border: 1px solid #bfc2c7;
    background: #fff;
    font-size: 15px;
}


.trabalhe-formulario__arquivo-wrapper {
    position: relative;
    width: 100%;
}

.trabalhe-formulario__arquivo {
    width: 100%;
    padding: 14px 18px;
    border-radius: 50px;
    border: 1px solid #bfc2c7;
    background: #fff;
    cursor: pointer;
    color: #777;
}

.trabalhe-formulario__arquivo-botao {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #26b6d7;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
}


.trabalhe-formulario__textarea {
    width: 100%;
    height: 180px;
    padding: 16px 22px;
    border-radius: 20px;
    border: 1px solid #bfc2c7;
    background: #fff;
    font-size: 15px;
    margin-bottom: 25px;
}


.trabalhe-formulario__rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}


.trabalhe-formulario__botao {
    background: #1976d2;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.trabalhe-formulario__botao:hover {
    background: #0f5ca8;
}


@media (max-width: 768px) {
    .trabalhe-banner {
        height: 260px;
    }

    .trabalhe-banner__title {
        font-size: 34px;
    }

    .trabalhe-formulario__linha {
        flex-direction: column;
    }

    .trabalhe-formulario__rodape {
        flex-direction: column;
        gap: 20px;
    }
}
