/* --- Estilos de RRHH --- */
.rrhh-hero { padding: 140px 8% 40px; text-align: center; }
.rrhh-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.rrhh-hero h1 b { color: var(--accent-orange); }

.form-section { padding: 40px 8%; background: #050b1a; }

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-container h2 { margin-bottom: 10px; color: var(--text-main); }
.form-container p { color: var(--text-dim); margin-bottom: 2rem; }

/* Estilos de inputs */
.akura-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

input, select, textarea {
    background: #1e293b;
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus { border-color: var(--accent-orange); }

textarea { height: 150px; resize: none; }

.file-input-wrapper {
    border: 1px dashed var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* Lógica de Tarjetas */
.jobs-section { padding: 80px 8%; }
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }

.job-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
}

.job-card .tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-orange);
    font-weight: 800;
}

/* Lógica de visibilidad */
.job-card.unavailable { display: none; } /* ESTO OCULTA LAS TARJETAS NO DISPONIBLES */

.btn-sm {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    background: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) { .form-group { grid-template-columns: 1fr; } }