.trabalhe-conosco-section {
    background-color: var(--bg-color);
    padding: 4rem 0;
    width: 100%;
}

.trabalhe-conosco-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.trabalhe-conosco-section p {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    width: 90%;
}

#trabalhe-form {
    margin: 0 auto;
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

#trabalhe-form .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.trabalhe-actions {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

.trabalhe-actions p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.trabalhe-actions .app-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .trabalhe-conosco-section {
        padding: 2rem 0;
    }

    .trabalhe-conosco-section h1 {
        font-size: 2rem;
    }

    .trabalhe-conosco-section p {
        font-size: 0.9rem;
    }

    #trabalhe-form {
        max-width: 100%;
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    #trabalhe-form .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .trabalhe-actions p {
        font-size: 0.9rem;
    }

    .trabalhe-actions .app-button {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .trabalhe-conosco-section h1 {
        font-size: 1.8rem;
    }

    .trabalhe-conosco-section p {
        font-size: 0.8rem;
    }

    #trabalhe-form {
        padding: 1rem;
    }
}