/* ============================================================
   matriculate-page.css — Estilos de pages/matriculate.html
   ============================================================ */

.container { max-width: 1100px; }

/* Hero */
.mat-hero { background: linear-gradient(135deg, #0f1626 0%, #1a2540 100%); padding: 60px 0 50px; color: #fff; text-align: center; }
.mat-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.mat-hero h1 span { color: #ff6b35; }
.mat-hero p { font-size: 1.05rem; opacity: 0.8; max-width: 560px; margin: 0 auto; }

/* Pasos */
.pasos-section { padding: 64px 0 40px; }
.pasos-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 40px; color: #0f1626; }
.pasos-timeline { display: flex; gap: 0; position: relative; justify-content: center; flex-wrap: wrap; }
.paso { flex: 1; min-width: 200px; max-width: 260px; text-align: center; padding: 0 16px; position: relative; }
.paso-circle { width: 56px; height: 56px; background: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; position: relative; z-index: 1; }
.paso h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: #0f1626; }
.paso p { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* Ciclos selector */
.ciclos-selector { padding: 0 0 64px; }
.ciclos-selector h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 32px; color: #0f1626; }
.ciclos-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 48px; }
.ciclo-card { background: #fff; border: 2px solid #e8ecf0; border-radius: 16px; padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.2s; }
.ciclo-card:hover, .ciclo-card.activo { border-color: #00d4ff; box-shadow: 0 4px 20px rgba(0,212,255,0.15); }
.ciclo-card.activo { background: #f0fbff; }
.ciclo-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.5rem; color: #fff; }
.ciclo-card:nth-child(1) .ciclo-icon { background: linear-gradient(135deg, #6e00ff, #9933ff); }
.ciclo-card:nth-child(2) .ciclo-icon { background: linear-gradient(135deg, #0066ff, #3399ff); }
.ciclo-card:nth-child(3) .ciclo-icon { background: linear-gradient(135deg, #00b09b, #96c93d); }
.ciclo-card:nth-child(4) .ciclo-icon { background: linear-gradient(135deg, #00897b, #4ebaaa); }
.ciclo-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; color: #0f1626; }
.ciclo-card .ciclo-nivel { font-size: 0.78rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ciclo-card .ciclo-salario { font-size: 0.88rem; color: #ff6b35; font-weight: 600; }

/* Formulario de matrícula */
.form-section { background: #fff; border-radius: 20px; box-shadow: 0 4px 30px rgba(0,0,0,0.09); padding: 48px; max-width: 700px; margin: 0 auto 64px; }
.form-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: #0f1626; }
.form-section .form-subtitle { font-size: 0.9rem; color: #888; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: #444; text-transform: uppercase; letter-spacing: 0.4px; }
.form-field input, .form-field select, .form-field textarea {
    padding: 12px 14px; border: 1.5px solid #dde2ea; border-radius: 8px; font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif; background: #f9fafb; transition: border-color 0.2s;
    min-height: 44px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: #00d4ff; background: #fff;
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 0.85rem; color: #666; }
.form-check input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; accent-color: #00d4ff; flex-shrink: 0; }
.form-check a { color: #00d4ff; }
.btn-matricular { width: 100%; background: #ff6b35; color: #fff; border: none; padding: 16px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.btn-matricular:hover { background: #ff855a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,0.35); }
.form-nota { font-size: 0.78rem; color: #aaa; text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success i { font-size: 3rem; color: #4CAF50; margin-bottom: 16px; display: block; }
.form-success h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; color: #0f1626; margin-bottom: 10px; }
.form-success p { color: #666; font-size: 0.95rem; }

/* Info adicional */
.info-adicional { padding: 0 0 64px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.info-item { background: #fff; border-radius: 14px; padding: 28px 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.info-item i { font-size: 1.6rem; color: #00d4ff; margin-bottom: 14px; display: block; }
.info-item h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #0f1626; }
.info-item p { font-size: 0.88rem; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-section { padding: 32px 20px; }
}
@media (max-width: 480px) {
    .mat-hero { padding: 40px 0 36px; }
    .pasos-section, .ciclos-selector, .info-adicional { padding: 40px 0; }
}
