/* ============================================
   KONEXT JOBS - VERSIÓN SIMPLE
   ============================================ */
/* ===== VALIDACIONES ===== */
.konext-validacion {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #f97316;
}

.konext-label-importante {
    font-weight: 700 !important;
    color: #1e293b !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
}

.konext-info {
    display: block;
    font-weight: normal;
    color: #64748b;
    font-size: 12px;
    margin-top: 4px;
}

.konext-opciones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.konext-radio, .konext-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s;
}

.konext-radio:hover, .konext-checkbox:hover {
    background: #f1f5f9;
    border-color: #f97316;
}

.konext-radio input[type="radio"], 
.konext-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.konext-radio span, .konext-checkbox span {
    font-size: 14px;
    color: #334155;
}

/* CV deshabilitado */
.konext-form-campo input:disabled {
    background: #e2e8f0;
    cursor: not-allowed;
}

.konext-cv-mensaje {
    font-size: 13px;
    background: #fff7ed;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #fed7aa;
}
.konext-simple-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== PUESTOS ===== */
.konext-puestos-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.konext-puesto-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    min-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.konext-puesto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    border-color: #f97316;
}

.konext-puesto-titulo {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.konext-btn-postular {
    background: transparent;
    border: 1px solid #f97316;
    color: #f97316;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.konext-btn-postular:hover {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

/* ===== FORMULARIO ===== */
.konext-formulario-simple {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.konext-form-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.konext-form-header h4 {
    margin: 0;
    font-size: 18px;
    color: #374151;
}

#konext-area-seleccionada {
    color: #f97316;
    font-weight: 600;
    background: #fff7ed;
    padding: 4px 12px;
    border-radius: 50px;
    margin-left: 10px;
}

.konext-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.konext-form-campo {
    flex: 1;
    margin-bottom: 20px;
}

.konext-form-campo label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.konext-form-campo input,
.konext-form-campo select,
.konext-form-campo textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f9fafb;
}

.konext-form-campo input:focus,
.konext-form-campo select:focus,
.konext-form-campo textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: white;
}

.konext-form-campo input[type="file"] {
    padding: 8px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
}

.konext-file-info {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #6b7280;
}

.konext-form-acciones {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.konext-btn-enviar {
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.konext-btn-enviar:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.konext-btn-cancelar {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.konext-btn-cancelar:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}

/* ===== MENSAJES ===== */
.konext-mensajes {
    margin-top: 20px;
}

.konext-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    text-align: center;
}

.konext-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .konext-puestos-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .konext-puesto-card {
        width: 100%;
    }
    
    .konext-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .konext-form-acciones {
        flex-direction: column;
    }
    
    .konext-formulario-simple {
        padding: 20px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes konext-slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.konext-formulario-simple {
    animation: konext-slideDown 0.3s ease;
}
/* ===== NUEVO DISEÑO SIMPLE ===== */

.konext-seccion {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.konext-seccion-titulo {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.konext-pregunta {
    margin-bottom: 20px;
}

.konext-pregunta-texto {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    font-size: 15px;
}

.konext-pregunta-detalle {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 12px 0;
    font-style: italic;
}

.konext-opciones-horario,
.konext-opciones-tiempo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.konext-radio-simple {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.konext-radio-simple:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.konext-radio-simple input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.konext-radio-simple span {
    font-size: 14px;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .konext-seccion {
        padding: 15px;
    }
    
    .konext-radio-simple {
        padding: 8px 12px;
    }
}
