:root {
--h-primary: #0d9488;
--h-radius: 14px;
--h-shadow: 0 2px 12px rgba(0,0,0,.06);
--h-shadow-hover: 0 8px 30px rgba(0,0,0,.1);
--h-font: inherit;
}
.horarios-container { font-family: var(--h-font); width: 100%; box-sizing: border-box; padding: 10px 0; color: #1e293b; }
.horarios-loading { text-align: center; padding: 60px 0; color: #94a3b8; }
.horarios-spinner { width: 36px; height: 36px; margin: 0 auto 12px; border: 3px solid #e2e8f0; border-top-color: var(--h-primary); border-radius: 50%; animation: h-spin 0.7s linear infinite; }
@keyframes h-spin { to { transform: rotate(360deg); } }
.horarios-error { color: #dc2626; text-align: center; }
.horarios-no-results { text-align: center; padding: 60px 20px; color: #94a3b8; }
.horarios-no-results .horarios-empty-icon { font-size: 48px; margin-bottom: 12px; } .horarios-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; align-items: center; }
.horarios-filter-select { padding: 8px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 13px; color: #334155; background: #fff; min-width: 140px; cursor: pointer; transition: border-color .2s; font-family: inherit; }
.horarios-filter-select:focus { border-color: var(--h-primary); outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.horarios-filter-reset { padding: 8px 14px; background: #fee2e2; color: #dc2626; border: none; border-radius: 10px; font-size: 12px; cursor: pointer; font-weight: 600; font-family: inherit; }
.horarios-filter-reset:hover { background: #fecaca; } .horarios-toggle-wrap { text-align: center; margin-bottom: 20px; }
.horarios-view-toggle { display: inline-flex; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 12px; padding: 4px; box-shadow: var(--h-shadow); }
.horarios-view-btn { padding: 8px 20px; border: none; background: transparent; cursor: pointer; font-size: 13px; border-radius: 8px; color: #64748b; font-weight: 500; transition: all .2s; font-family: inherit; }
.horarios-view-btn.active { background: var(--h-primary); color: #fff; box-shadow: 0 2px 8px rgba(13,148,136,.3); } .horarios-meta-tag { display: inline-block; font-size: 11px; color: #64748b; margin: 2px 4px 2px 0; }
.horarios-seats-badge { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.horarios-seats-available { background: #d1fae5; color: #065f46; }
.horarios-seats-low { background: #fef3c7; color: #92400e; }
.horarios-seats-full { background: #fee2e2; color: #991b1b; }
.horarios-action-btn { display: inline-block; padding: 7px 16px; border: none; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; font-family: inherit; }
.horarios-btn-reserve { background: var(--h-primary); color: #fff; }
.horarios-btn-reserve:hover { filter: brightness(1.1); transform: translateY(-1px); }
.horarios-checkbox-label { font-weight: normal; display: flex; align-items: center; gap: 8px; } .horarios-classic { overflow-x: auto; }
.horarios-classic-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--h-radius); overflow: hidden; box-shadow: var(--h-shadow); }
.horarios-classic-table th { background: var(--h-primary); color: #fff; padding: 12px 10px; text-align: center; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.horarios-classic-table td { padding: 10px; border: 1px solid #f1f5f9; vertical-align: top; font-size: 13px; min-width: 120px; }
.horarios-classic-time { text-align: center; font-weight: 700; color: var(--h-primary); white-space: nowrap; }
.horarios-classic-endtime { font-weight: 400; color: #94a3b8; font-size: 11px; }
.horarios-classic-cell { transition: background .2s; }
.horarios-classic-cell:hover:not(.horarios-classic-empty) { background: #f0fdfa; }
.horarios-classic-empty { background: #fafafa; }
.horarios-classic-cell strong { color: #1e293b; }
.horarios-classic-cell small { color: #64748b; }
.horarios-classic-cell .horarios-action-btn { margin-top: 6px; padding: 5px 12px; font-size: 11px; } .horarios-weekly { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 12px; }
.horarios-day-col { background: rgba(255,255,255,.7); backdrop-filter: blur(8px); border-radius: var(--h-radius); overflow: hidden; box-shadow: var(--h-shadow); transition: box-shadow .3s; }
.horarios-day-col:hover { box-shadow: var(--h-shadow-hover); }
.horarios-day-header { background: var(--h-primary); color: #fff; padding: 12px; text-align: center; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.horarios-day-body { padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.horarios-empty-day { text-align: center; color: #cbd5e1; padding: 20px; font-size: 13px; }
.horarios-class-card { background: rgba(255,255,255,.85); backdrop-filter: blur(6px); border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,.04); transition: transform .2s, box-shadow .2s; }
.horarios-class-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.horarios-card-image { width: 100%; height: 90px; object-fit: cover; }
.horarios-card-content { padding: 12px; border-top: 3px solid var(--card-color, var(--h-primary)); }
.horarios-class-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.horarios-class-name a { color: inherit; text-decoration: none; }
.horarios-class-name a:hover { color: var(--h-primary); }
.horarios-class-time { font-size: 12px; color: #64748b; margin-bottom: 6px; }
.horarios-class-meta { margin-bottom: 8px; }
.horarios-card-content .horarios-action-btn { width: 100%; text-align: center; margin-top: 4px; } .horarios-list { display: flex; flex-direction: column; gap: 12px; }
.horarios-list-day-header { font-weight: 700; font-size: 15px; color: var(--h-primary); padding: 6px 0; margin-bottom: 6px; border-bottom: 2px solid var(--h-primary); text-transform: uppercase; letter-spacing: .5px; }
.horarios-list-item { display: flex; align-items: center; gap: 14px; background: #fff; padding: 14px 18px; border-radius: 12px; box-shadow: var(--h-shadow); transition: box-shadow .2s; }
.horarios-list-item:hover { box-shadow: var(--h-shadow-hover); }
.horarios-list-image { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.horarios-list-color { width: 6px; height: 44px; border-radius: 4px; flex-shrink: 0; }
.horarios-list-info { flex: 1; min-width: 0; }
.horarios-list-info h4 { margin: 0 0 4px; font-size: 14px; }
.horarios-list-info h4 a { color: inherit; text-decoration: none; }
.horarios-list-details { font-size: 12px; color: #64748b; line-height: 1.6; }
.horarios-list-actions { flex-shrink: 0; } .horarios-calendar { background: #fff; border-radius: var(--h-radius); overflow: hidden; box-shadow: var(--h-shadow); }
.horarios-cal-header { display: flex; justify-content: center; align-items: center; padding: 16px 20px; border-bottom: 1px solid #f1f5f9; }
.horarios-cal-month { font-size: 20px; font-weight: 700; color: #1e293b; }
.horarios-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.horarios-cal-dow { padding: 10px 4px; text-align: center; font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; background: #f8fafc; border-bottom: 1px solid #f1f5f9; }
.horarios-cal-day { min-height: 90px; padding: 6px; border: 1px solid #f1f5f9; position: relative; transition: background .2s; }
.horarios-cal-day:hover { background: #f0fdfa; }
.horarios-cal-day-empty { background: #fafafa; min-height: 60px; }
.horarios-cal-today { background: #f0fdfa; }
.horarios-cal-today .horarios-cal-date { background: var(--h-primary); color: #fff; border-radius: 50%; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.horarios-cal-date { font-size: 13px; font-weight: 600; color: #334155; display: inline-block; margin-bottom: 4px; }
.horarios-cal-events { display: flex; flex-direction: column; gap: 3px; }
.horarios-cal-event { padding: 3px 6px; border-radius: 4px; background: #f1f5f9; cursor: pointer; transition: background .2s; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.horarios-cal-event:hover { background: #e2e8f0; }
.horarios-cal-event-time { font-weight: 600; color: var(--h-primary); }
.horarios-cal-event-name { color: #334155; }
.horarios-cal-detail { background: #fff; border-radius: var(--h-radius); box-shadow: var(--h-shadow-hover); margin-top: 16px; overflow: hidden; }
.horarios-cal-detail-inner { padding: 24px; position: relative; }
.horarios-cal-detail-close { position: absolute; top: 12px; right: 16px; border: none; background: none; font-size: 20px; cursor: pointer; color: #94a3b8; }
.horarios-cal-detail-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 14px; }
.horarios-cal-detail-inner h3 { margin: 0 0 6px; font-size: 20px; }
.horarios-cal-detail-time { color: #64748b; font-size: 14px; margin-bottom: 10px; }
.horarios-cal-detail-inner .horarios-action-btn { margin-top: 12px; } .horarios-timeline { display: flex; flex-direction: column; gap: 0; }
.horarios-tl-day { display: flex; gap: 0; }
.horarios-tl-day-label { width: 110px; flex-shrink: 0; padding: 20px 16px; font-weight: 700; font-size: 14px; color: var(--h-primary); text-align: right; border-right: 3px solid var(--h-primary); position: relative; }
.horarios-tl-items { flex: 1; padding: 10px 0 10px 24px; display: flex; flex-direction: column; gap: 12px; }
.horarios-tl-item { display: flex; gap: 12px; align-items: flex-start; background: #fff; padding: 14px 18px; border-radius: 12px; box-shadow: var(--h-shadow); transition: all .2s; }
.horarios-tl-item:hover { box-shadow: var(--h-shadow-hover); transform: translateX(4px); }
.horarios-tl-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.horarios-tl-content { flex: 1; }
.horarios-tl-time { font-size: 12px; font-weight: 700; color: var(--h-primary); margin-bottom: 2px; }
.horarios-tl-name { font-size: 15px; font-weight: 600; color: #1e293b; margin-bottom: 4px; }
.horarios-tl-name a { color: inherit; text-decoration: none; }
.horarios-tl-name a:hover { color: var(--h-primary); }
.horarios-tl-meta { font-size: 12px; color: #64748b; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.horarios-tl-item .horarios-action-btn { padding: 5px 14px; font-size: 11px; } .horarios-timetable-wrap { padding-bottom: 4px; }
.horarios-tt { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--h-shadow); border-radius: var(--h-radius); overflow: hidden; table-layout: fixed; }
.horarios-tt-corner { width: 50px; background: #374151 !important; }
.horarios-tt-day-head { color: #fff; padding: 12px 6px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1px; border-right: 2px solid rgba(255,255,255,.2); }
.horarios-tt-room-head { color: rgba(255,255,255,.92); padding: 7px 4px; text-align: center; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; border-right: 1px solid rgba(255,255,255,.15); }
.horarios-tt-time-cell { padding: 8px 4px; text-align: center; font-weight: 700; font-size: 11px; color: #475569; background: #f8fafc; border-bottom: 1px solid #e2e8f0; white-space: nowrap; vertical-align: top; }
.horarios-tt-cell { border: 1px solid #f1f5f9; padding: 0; vertical-align: top; height: auto; transition: background .2s; word-break: break-word; }
.horarios-tt-filled { padding: 8px 7px; }
.horarios-tt-filled:hover { filter: brightness(0.96); }
.horarios-tt-empty { background: #fafbfc; }
.horarios-tt-class-name { font-weight: 700; font-size: 12px; color: #1e293b; line-height: 1.3; margin-bottom: 2px; }
.horarios-tt-class-name a { color: inherit; text-decoration: none; }
.horarios-tt-class-name a:hover { text-decoration: underline; }
.horarios-tt-level { font-size: 10px; color: #64748b; font-weight: 600; text-transform: uppercase; }
.horarios-tt-hours { font-size: 10px; color: #475569; margin-top: 2px; }
.horarios-tt-teacher { font-size: 10px; color: #64748b; font-style: italic; margin-top: 1px; }
.horarios-tt-desc { font-size: 9px; color: #94a3b8; margin-top: 2px; line-height: 1.3; }
.horarios-tt-reserve { display: block; margin-top: 5px; padding: 3px 8px; background: var(--h-primary); color: #fff; border: none; border-radius: 5px; font-size: 10px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.horarios-tt-reserve:hover { filter: brightness(1.1); transform: translateY(-1px); } .horarios-tt-mobile { display: flex; flex-direction: column; gap: 16px; }
.horarios-tt-mob-day { border-radius: var(--h-radius); overflow: hidden; box-shadow: var(--h-shadow); background: #fff; }
.horarios-tt-mob-day-header { color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-align: center; }
.horarios-tt-mob-card { padding: 12px 14px; margin: 8px; border-radius: 10px; }
.horarios-tt-mob-time { font-size: 11px; color: #64748b; font-weight: 600; margin-bottom: 2px; }
.horarios-tt-mob-name { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.horarios-tt-mob-name a { color: inherit; text-decoration: none; }
.horarios-tt-mob-name a:hover { text-decoration: underline; }
.horarios-tt-mob-meta { font-size: 12px; color: #64748b; margin-bottom: 2px; } .horarios-modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,.5); backdrop-filter: blur(4px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.horarios-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.horarios-reservation-modal { background: #fff; border-radius: 18px; width: 90vw; max-width: 480px; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.15); transform: translateY(20px); transition: transform .3s; }
.horarios-modal-backdrop.open .horarios-reservation-modal { transform: translateY(0); }
.horarios-reservation-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid #f1f5f9; }
.horarios-reservation-header h3 { margin: 0; font-size: 18px; color: #1e293b; }
.horarios-reservation-close { border: none; background: none; font-size: 20px; cursor: pointer; color: #94a3b8; padding: 4px; }
.horarios-reservation-body { padding: 20px 24px; }
.horarios-field { margin-bottom: 14px; }
.horarios-field label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 5px; }
.horarios-field .required { color: #dc2626; }
.horarios-field input, .horarios-field select, .horarios-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; color: #1e293b; background: #fff; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; font-family: inherit; }
.horarios-field input:focus, .horarios-field select:focus, .horarios-field textarea:focus { border-color: var(--h-primary); outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,.12); }
.horarios-field textarea { resize: vertical; min-height: 80px; }
.horarios-field.error input, .horarios-field.error select, .horarios-field.error textarea { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.horarios-form-message { padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; display: none; }
.horarios-form-message.success { background: #d1fae5; color: #065f46; }
.horarios-form-message.error { background: #fee2e2; color: #991b1b; }
.horarios-reservation-footer { padding: 14px 24px 20px; }
.horarios-submit-btn { width: 100%; padding: 12px; border: none; border-radius: 12px; background: var(--h-primary); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; font-family: inherit; }
.horarios-submit-btn:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.horarios-submit-btn:disabled { opacity: .6; cursor: not-allowed; } @media (max-width: 768px) {
.horarios-weekly { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
.horarios-list-item { flex-wrap: wrap; padding: 12px 16px; }
.horarios-list-image { width: 48px; height: 48px; }
.horarios-reservation-modal { width: 96vw; border-radius: 14px; }
.horarios-filters { gap: 6px; }
.horarios-filter-select { min-width: 100px; font-size: 12px; padding: 7px 10px; }
.horarios-classic-table th, .horarios-classic-table td { padding: 8px 6px; font-size: 11px; min-width: 90px; }
.horarios-cal-day { min-height: 60px; padding: 4px; }
.horarios-cal-event { font-size: 10px; }
.horarios-tl-day { flex-direction: column; }
.horarios-tl-day-label { width: 100%; text-align: left; border-right: none; border-bottom: 2px solid var(--h-primary); padding: 10px 12px; }
.horarios-tl-items { padding: 8px 0 8px 12px; }
.horarios-tt-class-name { font-size: 10px; }
.horarios-tt-day-head { font-size: 10px; padding: 8px 2px; letter-spacing: 0; }
.horarios-tt-room-head { font-size: 8px; padding: 5px 2px; }
.horarios-tt-time-cell { font-size: 10px; padding: 6px 2px; }
.horarios-tt-filled { padding: 5px 4px; }
.horarios-tt-level, .horarios-tt-hours, .horarios-tt-teacher { font-size: 8px; }
.horarios-tt-corner { width: 38px; }
}
@media (max-width: 480px) {
.horarios-weekly { grid-template-columns: 1fr; }
.horarios-card-image { height: 70px; }
.horarios-class-name { font-size: 13px; }
.horarios-list-actions .horarios-action-btn { padding: 6px 14px; font-size: 11px; }
.horarios-cal-grid { grid-template-columns: repeat(7, 1fr); }
.horarios-cal-day { min-height: 50px; }
.horarios-cal-date { font-size: 11px; }
.horarios-cal-event-name { display: none; }
} .horarios-schedule-instance[data-style="vibrante"] { background: linear-gradient(160deg, #fdf2f8 0%, #ede9fe 30%, #e0f2fe 60%, #ecfdf5 100%); padding: 28px; border-radius: 28px; }
[data-style="vibrante"] .horarios-container { color: #1e1b4b; } [data-style="vibrante"] .horarios-filter-select { border-radius: 50px; border: 2.5px solid transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4) border-box; font-weight: 600; padding: 10px 18px; }
[data-style="vibrante"] .horarios-filter-select:focus { box-shadow: 0 0 0 4px rgba(139,92,246,.2); }
[data-style="vibrante"] .horarios-filter-reset { border-radius: 50px; background: linear-gradient(135deg, #f43f5e, #ec4899); color: #fff; font-weight: 700; padding: 10px 18px; } [data-style="vibrante"] .horarios-view-toggle { border-radius: 50px; background: linear-gradient(135deg, #8b5cf6, #ec4899); padding: 5px; box-shadow: 0 8px 30px rgba(139,92,246,.3); }
[data-style="vibrante"] .horarios-view-btn { color: rgba(255,255,255,.75); border-radius: 50px; font-weight: 700; padding: 10px 24px; }
[data-style="vibrante"] .horarios-view-btn.active { background: #fff; color: #7c3aed; box-shadow: 0 4px 20px rgba(0,0,0,.15); } [data-style="vibrante"] .horarios-classic-table { border-radius: 24px; overflow: hidden; box-shadow: 0 12px 40px rgba(139,92,246,.12); border: 3px solid transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4) border-box; }
[data-style="vibrante"] .horarios-classic-table th { background: linear-gradient(135deg, #8b5cf6, #ec4899, #f43f5e); font-size: 14px; letter-spacing: 2px; padding: 18px 10px; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
[data-style="vibrante"] .horarios-classic-cell:hover:not(.horarios-classic-empty) { background: linear-gradient(135deg, #fdf2f8, #ede9fe); } [data-style="vibrante"] .horarios-day-col { border-radius: 24px; box-shadow: 0 12px 40px rgba(139,92,246,.1); border: 2px solid rgba(139,92,246,.15); background: rgba(255,255,255,.9); }
[data-style="vibrante"] .horarios-day-header { background: linear-gradient(135deg, #8b5cf6, #ec4899); font-size: 15px; letter-spacing: 3px; padding: 18px; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
[data-style="vibrante"] .horarios-class-card { border-radius: 18px; border: none; box-shadow: 0 6px 24px rgba(139,92,246,.08); background: #fff; }
[data-style="vibrante"] .horarios-class-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 16px 48px rgba(139,92,246,.18); }
[data-style="vibrante"] .horarios-card-content { border-top: 4px solid; border-image: linear-gradient(90deg, #8b5cf6, #ec4899) 1; }
[data-style="vibrante"] .horarios-class-name { font-size: 16px; }
[data-style="vibrante"] .horarios-btn-reserve { border-radius: 50px; padding: 12px 24px; font-size: 13px; background: linear-gradient(135deg, #8b5cf6, #ec4899); box-shadow: 0 6px 20px rgba(139,92,246,.35); letter-spacing: .5px; }
[data-style="vibrante"] .horarios-btn-reserve:hover { box-shadow: 0 8px 30px rgba(139,92,246,.45); transform: translateY(-3px) scale(1.02); } [data-style="vibrante"] .horarios-list-day-header { font-size: 18px; border-bottom: 4px solid; border-image: linear-gradient(90deg, #8b5cf6, #ec4899, #06b6d4) 1; padding-bottom: 10px; }
[data-style="vibrante"] .horarios-list-item { border-radius: 20px; box-shadow: 0 6px 24px rgba(139,92,246,.08); padding: 20px 24px; border: 2px solid transparent; transition: all .3s; }
[data-style="vibrante"] .horarios-list-item:hover { box-shadow: 0 12px 40px rgba(139,92,246,.15); transform: translateX(6px); border-color: rgba(139,92,246,.2); }
[data-style="vibrante"] .horarios-list-color { border-radius: 8px; width: 8px; } [data-style="vibrante"] .horarios-calendar { border-radius: 24px; box-shadow: 0 12px 40px rgba(139,92,246,.12); overflow: hidden; }
[data-style="vibrante"] .horarios-cal-header { background: linear-gradient(135deg, #8b5cf6, #ec4899); padding: 22px; }
[data-style="vibrante"] .horarios-cal-month { color: #fff; font-size: 24px; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
[data-style="vibrante"] .horarios-cal-dow { background: #fdf2f8; font-weight: 800; color: #7c3aed; }
[data-style="vibrante"] .horarios-cal-event { border-radius: 10px; background: linear-gradient(135deg, #ede9fe, #fce7f3); font-weight: 600; padding: 4px 8px; }
[data-style="vibrante"] .horarios-cal-event:hover { background: linear-gradient(135deg, #ddd6fe, #fbcfe8); }
[data-style="vibrante"] .horarios-cal-today { background: linear-gradient(135deg, #ede9fe, #fce7f3); }
[data-style="vibrante"] .horarios-cal-today .horarios-cal-date { background: linear-gradient(135deg, #8b5cf6, #ec4899); } [data-style="vibrante"] .horarios-tl-day-label { font-size: 17px; border-right-width: 5px; border-image: linear-gradient(180deg, #8b5cf6, #ec4899) 1; color: #7c3aed; }
[data-style="vibrante"] .horarios-tl-item { border-radius: 20px; box-shadow: 0 6px 24px rgba(139,92,246,.08); padding: 20px 24px; }
[data-style="vibrante"] .horarios-tl-item:hover { box-shadow: 0 12px 40px rgba(139,92,246,.15); transform: translateX(10px); }
[data-style="vibrante"] .horarios-tl-dot { width: 18px; height: 18px; box-shadow: 0 0 0 5px rgba(139,92,246,.2); }
[data-style="vibrante"] .horarios-tl-name { font-size: 17px; }
[data-style="vibrante"] .horarios-tl-time { color: #7c3aed; } [data-style="vibrante"] .horarios-tt { border-radius: 24px; box-shadow: 0 12px 40px rgba(139,92,246,.12); }
[data-style="vibrante"] .horarios-tt-day-head { font-size: 14px; padding: 18px 6px; letter-spacing: 2px; background: linear-gradient(180deg, rgba(139,92,246,.15), transparent); }
[data-style="vibrante"] .horarios-tt-filled { border-radius: 8px; margin: 2px; }
[data-style="vibrante"] .horarios-tt-mob-day { border-radius: 24px; box-shadow: 0 12px 40px rgba(139,92,246,.12); }
[data-style="vibrante"] .horarios-tt-mob-day-header { background: linear-gradient(135deg, #ec4899, #8b5cf6) !important; }
[data-style="vibrante"] .horarios-tt-mob-card { border-radius: 16px; } [data-style="vibrante"] .horarios-seats-badge { border-radius: 50px; font-size: 12px; padding: 4px 14px; }
[data-style="vibrante"] .horarios-reservation-modal { border-radius: 28px; box-shadow: 0 24px 70px rgba(139,92,246,.2); }
[data-style="vibrante"] .horarios-submit-btn { border-radius: 50px; background: linear-gradient(135deg, #8b5cf6, #ec4899); font-size: 16px; padding: 16px; box-shadow: 0 6px 20px rgba(139,92,246,.35); letter-spacing: .5px; }
[data-style="vibrante"] .horarios-field input,
[data-style="vibrante"] .horarios-field select,
[data-style="vibrante"] .horarios-field textarea { border-radius: 16px; border-width: 2.5px; }
[data-style="vibrante"] .horarios-field input:focus,
[data-style="vibrante"] .horarios-field select:focus,
[data-style="vibrante"] .horarios-field textarea:focus { border-color: #8b5cf6; box-shadow: 0 0 0 4px rgba(139,92,246,.15); } [data-style="elegante"] .horarios-container { color: #f1f5f9; }
.horarios-schedule-instance[data-style="elegante"] { background: #0f172a; padding: 28px; border-radius: 4px; border: 1px solid #1e293b; } [data-style="elegante"] .horarios-filter-select { background: #1e293b; color: #e2e8f0; border-color: #334155; border-radius: 2px; }
[data-style="elegante"] .horarios-filter-select:focus { border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,.2); }
[data-style="elegante"] .horarios-filter-reset { background: #450a0a; color: #fca5a5; border-radius: 2px; } [data-style="elegante"] .horarios-view-toggle { background: #1e293b; border-radius: 2px; border: 1px solid #334155; padding: 3px; }
[data-style="elegante"] .horarios-view-btn { color: #94a3b8; border-radius: 2px; }
[data-style="elegante"] .horarios-view-btn.active { background: linear-gradient(135deg, #c9a84c, #b8962e); color: #0f172a; box-shadow: none; } [data-style="elegante"] .horarios-classic-table { background: #1e293b; border-radius: 2px; box-shadow: 0 4px 24px rgba(0,0,0,.5); border: 1px solid #334155; }
[data-style="elegante"] .horarios-classic-table th { background: linear-gradient(180deg, #1e293b, #0f172a); color: #c9a84c; border-bottom: 2px solid #c9a84c; letter-spacing: 3px; text-transform: uppercase; }
[data-style="elegante"] .horarios-classic-table td { border-color: #334155; color: #e2e8f0; }
[data-style="elegante"] .horarios-classic-time { color: #c9a84c; }
[data-style="elegante"] .horarios-classic-cell:hover:not(.horarios-classic-empty) { background: #253347; }
[data-style="elegante"] .horarios-classic-empty { background: #172033; }
[data-style="elegante"] .horarios-classic-cell strong { color: #f1f5f9; }
[data-style="elegante"] .horarios-classic-cell small { color: #94a3b8; } [data-style="elegante"] .horarios-day-col { background: #1e293b; border-radius: 2px; box-shadow: 0 4px 24px rgba(0,0,0,.4); border: 1px solid #334155; }
[data-style="elegante"] .horarios-day-header { background: linear-gradient(180deg, #1e293b, #0f172a); color: #c9a84c; letter-spacing: 4px; border-bottom: 2px solid #c9a84c; }
[data-style="elegante"] .horarios-class-card { background: #253347; border-color: #334155; border-radius: 2px; }
[data-style="elegante"] .horarios-class-card:hover { box-shadow: 0 6px 24px rgba(201,168,76,.12); transform: translateY(-2px); }
[data-style="elegante"] .horarios-card-content { border-top-color: #c9a84c; }
[data-style="elegante"] .horarios-class-name { color: #f1f5f9; }
[data-style="elegante"] .horarios-class-name a { color: #c9a84c; }
[data-style="elegante"] .horarios-class-time { color: #94a3b8; }
[data-style="elegante"] .horarios-meta-tag { color: #94a3b8; }
[data-style="elegante"] .horarios-empty-day { color: #475569; }
[data-style="elegante"] .horarios-btn-reserve { background: linear-gradient(135deg, #c9a84c, #b8962e); color: #0f172a; border-radius: 2px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 11px; }
[data-style="elegante"] .horarios-btn-reserve:hover { box-shadow: 0 4px 18px rgba(201,168,76,.35); } [data-style="elegante"] .horarios-list-day-header { color: #c9a84c; border-bottom-color: #c9a84c; letter-spacing: 3px; }
[data-style="elegante"] .horarios-list-item { background: #1e293b; border: 1px solid #334155; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,.4); }
[data-style="elegante"] .horarios-list-item:hover { box-shadow: 0 4px 24px rgba(201,168,76,.1); border-color: #c9a84c; }
[data-style="elegante"] .horarios-list-info h4 { color: #f1f5f9; }
[data-style="elegante"] .horarios-list-info h4 a { color: #c9a84c; }
[data-style="elegante"] .horarios-list-details { color: #94a3b8; }
[data-style="elegante"] .horarios-list-color { border-radius: 0; } [data-style="elegante"] .horarios-calendar { background: #1e293b; border-radius: 2px; border: 1px solid #334155; box-shadow: 0 4px 24px rgba(0,0,0,.5); }
[data-style="elegante"] .horarios-cal-header { border-bottom-color: #334155; background: #0f172a; }
[data-style="elegante"] .horarios-cal-month { color: #c9a84c; letter-spacing: 2px; }
[data-style="elegante"] .horarios-cal-dow { background: #172033; color: #c9a84c; border-bottom-color: #334155; letter-spacing: 2px; }
[data-style="elegante"] .horarios-cal-day { border-color: #334155; }
[data-style="elegante"] .horarios-cal-day:hover { background: #253347; }
[data-style="elegante"] .horarios-cal-day-empty { background: #131c2e; }
[data-style="elegante"] .horarios-cal-today { background: #253347; }
[data-style="elegante"] .horarios-cal-today .horarios-cal-date { background: #c9a84c; color: #0f172a; }
[data-style="elegante"] .horarios-cal-date { color: #94a3b8; }
[data-style="elegante"] .horarios-cal-event { background: #253347; color: #e2e8f0; }
[data-style="elegante"] .horarios-cal-event:hover { background: #334155; }
[data-style="elegante"] .horarios-cal-event-time { color: #c9a84c; }
[data-style="elegante"] .horarios-cal-event-name { color: #e2e8f0; }
[data-style="elegante"] .horarios-cal-detail { background: #1e293b; border: 1px solid #334155; }
[data-style="elegante"] .horarios-cal-detail-inner h3 { color: #f1f5f9; }
[data-style="elegante"] .horarios-cal-detail-time { color: #c9a84c; } [data-style="elegante"] .horarios-tl-day-label { color: #c9a84c; border-right-color: #c9a84c; letter-spacing: 2px; }
[data-style="elegante"] .horarios-tl-item { background: #1e293b; border: 1px solid #334155; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,.4); }
[data-style="elegante"] .horarios-tl-item:hover { border-color: #c9a84c; box-shadow: 0 4px 18px rgba(201,168,76,.12); }
[data-style="elegante"] .horarios-tl-time { color: #c9a84c; }
[data-style="elegante"] .horarios-tl-name { color: #f1f5f9; }
[data-style="elegante"] .horarios-tl-name a { color: #c9a84c; }
[data-style="elegante"] .horarios-tl-meta { color: #94a3b8; } [data-style="elegante"] .horarios-tt { background: #1e293b; box-shadow: 0 4px 24px rgba(0,0,0,.5); border-radius: 2px; border: 1px solid #334155; }
[data-style="elegante"] .horarios-tt-corner { background: #0f172a !important; }
[data-style="elegante"] .horarios-tt-day-head { border-right-color: rgba(201,168,76,.3); }
[data-style="elegante"] .horarios-tt-room-head { border-right-color: rgba(201,168,76,.2); }
[data-style="elegante"] .horarios-tt-time-cell { background: #172033; color: #c9a84c; border-bottom-color: #334155; }
[data-style="elegante"] .horarios-tt-cell { border-color: #334155; }
[data-style="elegante"] .horarios-tt-empty { background: #172033; }
[data-style="elegante"] .horarios-tt-class-name { color: #f1f5f9; }
[data-style="elegante"] .horarios-tt-class-name a { color: #c9a84c; }
[data-style="elegante"] .horarios-tt-level { color: #94a3b8; }
[data-style="elegante"] .horarios-tt-hours { color: #c9a84c; }
[data-style="elegante"] .horarios-tt-teacher { color: #94a3b8; }
[data-style="elegante"] .horarios-tt-reserve { background: linear-gradient(135deg, #c9a84c, #b8962e); color: #0f172a; border-radius: 0; letter-spacing: 1px; text-transform: uppercase; }
[data-style="elegante"] .horarios-tt-mob-day { background: #1e293b; border: 1px solid #334155; }
[data-style="elegante"] .horarios-tt-mob-name { color: #f1f5f9; }
[data-style="elegante"] .horarios-tt-mob-name a { color: #c9a84c; }
[data-style="elegante"] .horarios-tt-mob-time { color: #c9a84c; }
[data-style="elegante"] .horarios-tt-mob-meta { color: #94a3b8; } [data-style="elegante"] .horarios-seats-available { background: #064e3b; color: #6ee7b7; }
[data-style="elegante"] .horarios-seats-low { background: #78350f; color: #fcd34d; }
[data-style="elegante"] .horarios-seats-full { background: #450a0a; color: #fca5a5; } [data-style="elegante"] .horarios-modal-backdrop { background: rgba(0,0,0,.75); }
[data-style="elegante"] .horarios-reservation-modal { background: #1e293b; border: 1px solid #334155; border-radius: 4px; }
[data-style="elegante"] .horarios-reservation-header { border-bottom-color: #334155; }
[data-style="elegante"] .horarios-reservation-header h3 { color: #c9a84c; }
[data-style="elegante"] .horarios-reservation-close { color: #64748b; }
[data-style="elegante"] .horarios-field label { color: #e2e8f0; }
[data-style="elegante"] .horarios-field input,
[data-style="elegante"] .horarios-field select,
[data-style="elegante"] .horarios-field textarea { background: #0f172a; color: #f1f5f9; border-color: #334155; border-radius: 2px; }
[data-style="elegante"] .horarios-field input:focus,
[data-style="elegante"] .horarios-field select:focus,
[data-style="elegante"] .horarios-field textarea:focus { border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
[data-style="elegante"] .horarios-submit-btn { background: linear-gradient(135deg, #c9a84c, #b8962e); color: #0f172a; border-radius: 2px; letter-spacing: 2px; text-transform: uppercase; }
[data-style="elegante"] .horarios-form-message.success { background: #064e3b; color: #6ee7b7; }
[data-style="elegante"] .horarios-form-message.error { background: #450a0a; color: #fca5a5; } [data-style="elegante"] .horarios-no-results { color: #64748b; }
[data-style="elegante"] .horarios-loading { color: #64748b; }
[data-style="elegante"] .horarios-spinner { border-color: #334155; border-top-color: #c9a84c; } [data-style="neon"] .horarios-container { color: #e0f2fe; }
.horarios-schedule-instance[data-style="neon"] { background: #020617; padding: 28px; border-radius: 12px; border: 1px solid rgba(6,182,212,.2); box-shadow: 0 0 40px rgba(6,182,212,.05); } @keyframes h-neon-pulse { 0%, 100% { box-shadow: 0 0 8px rgba(6,182,212,.4), 0 0 20px rgba(6,182,212,.1); } 50% { box-shadow: 0 0 16px rgba(6,182,212,.6), 0 0 40px rgba(6,182,212,.2); } }
@keyframes h-neon-border { 0%, 100% { border-color: rgba(6,182,212,.5); } 50% { border-color: rgba(168,85,247,.5); } } [data-style="neon"] .horarios-filter-select { background: rgba(6,182,212,.05); color: #67e8f9; border: 1px solid rgba(6,182,212,.3); border-radius: 6px; }
[data-style="neon"] .horarios-filter-select:focus { border-color: #06b6d4; box-shadow: 0 0 12px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-filter-reset { background: rgba(244,63,94,.15); color: #fb7185; border: 1px solid rgba(244,63,94,.3); border-radius: 6px; } [data-style="neon"] .horarios-view-toggle { background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.3); border-radius: 8px; }
[data-style="neon"] .horarios-view-btn { color: #67e8f9; border-radius: 6px; }
[data-style="neon"] .horarios-view-btn.active { background: #06b6d4; color: #020617; box-shadow: 0 0 20px rgba(6,182,212,.5); font-weight: 700; } [data-style="neon"] .horarios-classic-table { background: rgba(6,182,212,.03); border-radius: 8px; box-shadow: 0 0 30px rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.2); }
[data-style="neon"] .horarios-classic-table th { background: transparent; color: #06b6d4; border-bottom: 2px solid #06b6d4; text-shadow: 0 0 10px rgba(6,182,212,.5); letter-spacing: 3px; }
[data-style="neon"] .horarios-classic-table td { border-color: rgba(6,182,212,.1); color: #cbd5e1; }
[data-style="neon"] .horarios-classic-time { color: #22d3ee; text-shadow: 0 0 8px rgba(34,211,238,.3); }
[data-style="neon"] .horarios-classic-cell:hover:not(.horarios-classic-empty) { background: rgba(6,182,212,.08); }
[data-style="neon"] .horarios-classic-empty { background: rgba(0,0,0,.3); }
[data-style="neon"] .horarios-classic-cell strong { color: #e0f2fe; }
[data-style="neon"] .horarios-classic-cell small { color: #67e8f9; } [data-style="neon"] .horarios-day-col { background: rgba(6,182,212,.04); border-radius: 8px; border: 1px solid rgba(6,182,212,.2); box-shadow: 0 0 20px rgba(6,182,212,.05); }
[data-style="neon"] .horarios-day-col:hover { box-shadow: 0 0 30px rgba(6,182,212,.12); animation: h-neon-border 3s ease infinite; }
[data-style="neon"] .horarios-day-header { background: transparent; color: #06b6d4; border-bottom: 2px solid #06b6d4; text-shadow: 0 0 10px rgba(6,182,212,.5); letter-spacing: 4px; font-size: 14px; }
[data-style="neon"] .horarios-class-card { background: rgba(6,182,212,.04); border: 1px solid rgba(6,182,212,.15); border-radius: 6px; }
[data-style="neon"] .horarios-class-card:hover { border-color: #06b6d4; box-shadow: 0 0 20px rgba(6,182,212,.2); transform: translateY(-2px); }
[data-style="neon"] .horarios-card-content { border-top: 2px solid #06b6d4; }
[data-style="neon"] .horarios-class-name { color: #e0f2fe; }
[data-style="neon"] .horarios-class-name a { color: #22d3ee; }
[data-style="neon"] .horarios-class-time { color: #67e8f9; }
[data-style="neon"] .horarios-meta-tag { color: #67e8f9; }
[data-style="neon"] .horarios-empty-day { color: #334155; }
[data-style="neon"] .horarios-btn-reserve { background: transparent; color: #22d3ee; border: 2px solid #06b6d4; border-radius: 6px; box-shadow: 0 0 12px rgba(6,182,212,.2); text-shadow: 0 0 8px rgba(6,182,212,.3); text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
[data-style="neon"] .horarios-btn-reserve:hover { background: #06b6d4; color: #020617; box-shadow: 0 0 24px rgba(6,182,212,.5); text-shadow: none; } [data-style="neon"] .horarios-list-day-header { color: #06b6d4; border-bottom: 2px solid #06b6d4; text-shadow: 0 0 10px rgba(6,182,212,.4); letter-spacing: 3px; }
[data-style="neon"] .horarios-list-item { background: rgba(6,182,212,.04); border: 1px solid rgba(6,182,212,.15); border-radius: 6px; }
[data-style="neon"] .horarios-list-item:hover { border-color: #06b6d4; box-shadow: 0 0 20px rgba(6,182,212,.15); }
[data-style="neon"] .horarios-list-info h4 { color: #e0f2fe; }
[data-style="neon"] .horarios-list-info h4 a { color: #22d3ee; }
[data-style="neon"] .horarios-list-details { color: #67e8f9; } [data-style="neon"] .horarios-calendar { background: rgba(6,182,212,.03); border: 1px solid rgba(6,182,212,.2); border-radius: 8px; }
[data-style="neon"] .horarios-cal-header { background: transparent; border-bottom: 1px solid rgba(6,182,212,.2); }
[data-style="neon"] .horarios-cal-month { color: #06b6d4; text-shadow: 0 0 12px rgba(6,182,212,.4); letter-spacing: 2px; }
[data-style="neon"] .horarios-cal-dow { background: rgba(6,182,212,.06); color: #22d3ee; border-bottom-color: rgba(6,182,212,.2); text-shadow: 0 0 6px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-cal-day { border-color: rgba(6,182,212,.1); }
[data-style="neon"] .horarios-cal-day:hover { background: rgba(6,182,212,.08); }
[data-style="neon"] .horarios-cal-day-empty { background: rgba(0,0,0,.3); }
[data-style="neon"] .horarios-cal-today { background: rgba(6,182,212,.1); }
[data-style="neon"] .horarios-cal-today .horarios-cal-date { background: #06b6d4; color: #020617; box-shadow: 0 0 12px rgba(6,182,212,.5); }
[data-style="neon"] .horarios-cal-date { color: #67e8f9; }
[data-style="neon"] .horarios-cal-event { background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.2); border-radius: 4px; }
[data-style="neon"] .horarios-cal-event:hover { background: rgba(6,182,212,.15); border-color: #06b6d4; }
[data-style="neon"] .horarios-cal-event-time { color: #22d3ee; text-shadow: 0 0 6px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-cal-event-name { color: #e0f2fe; }
[data-style="neon"] .horarios-cal-detail { background: rgba(6,182,212,.05); border: 1px solid rgba(6,182,212,.3); box-shadow: 0 0 30px rgba(6,182,212,.1); }
[data-style="neon"] .horarios-cal-detail-inner h3 { color: #e0f2fe; }
[data-style="neon"] .horarios-cal-detail-time { color: #22d3ee; } [data-style="neon"] .horarios-tl-day-label { color: #06b6d4; border-right: 3px solid #06b6d4; text-shadow: 0 0 10px rgba(6,182,212,.4); letter-spacing: 2px; }
[data-style="neon"] .horarios-tl-item { background: rgba(6,182,212,.04); border: 1px solid rgba(6,182,212,.15); border-radius: 6px; }
[data-style="neon"] .horarios-tl-item:hover { border-color: #06b6d4; box-shadow: 0 0 20px rgba(6,182,212,.15); transform: translateX(4px); }
[data-style="neon"] .horarios-tl-dot { box-shadow: 0 0 10px rgba(6,182,212,.5); }
[data-style="neon"] .horarios-tl-time { color: #22d3ee; text-shadow: 0 0 6px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-tl-name { color: #e0f2fe; }
[data-style="neon"] .horarios-tl-name a { color: #22d3ee; }
[data-style="neon"] .horarios-tl-meta { color: #67e8f9; } [data-style="neon"] .horarios-tt { background: rgba(6,182,212,.03); border: 1px solid rgba(6,182,212,.2); border-radius: 8px; }
[data-style="neon"] .horarios-tt-corner { background: #020617 !important; }
[data-style="neon"] .horarios-tt-day-head { color: #06b6d4; text-shadow: 0 0 8px rgba(6,182,212,.4); border-right-color: rgba(6,182,212,.2); }
[data-style="neon"] .horarios-tt-room-head { color: #67e8f9; border-right-color: rgba(6,182,212,.15); }
[data-style="neon"] .horarios-tt-time-cell { background: rgba(6,182,212,.05); color: #22d3ee; border-bottom-color: rgba(6,182,212,.15); text-shadow: 0 0 6px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-tt-cell { border-color: rgba(6,182,212,.1); }
[data-style="neon"] .horarios-tt-empty { background: rgba(0,0,0,.3); }
[data-style="neon"] .horarios-tt-class-name { color: #e0f2fe; }
[data-style="neon"] .horarios-tt-class-name a { color: #22d3ee; }
[data-style="neon"] .horarios-tt-level { color: #67e8f9; }
[data-style="neon"] .horarios-tt-hours { color: #22d3ee; }
[data-style="neon"] .horarios-tt-teacher { color: #67e8f9; }
[data-style="neon"] .horarios-tt-reserve { background: transparent; color: #22d3ee; border: 1.5px solid #06b6d4; border-radius: 4px; box-shadow: 0 0 8px rgba(6,182,212,.2); text-transform: uppercase; letter-spacing: .5px; }
[data-style="neon"] .horarios-tt-reserve:hover { background: #06b6d4; color: #020617; box-shadow: 0 0 16px rgba(6,182,212,.5); }
[data-style="neon"] .horarios-tt-mob-day { background: rgba(6,182,212,.03); border: 1px solid rgba(6,182,212,.2); }
[data-style="neon"] .horarios-tt-mob-day-header { text-shadow: 0 0 8px rgba(6,182,212,.4); }
[data-style="neon"] .horarios-tt-mob-name { color: #e0f2fe; }
[data-style="neon"] .horarios-tt-mob-name a { color: #22d3ee; }
[data-style="neon"] .horarios-tt-mob-time { color: #22d3ee; text-shadow: 0 0 6px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-tt-mob-meta { color: #67e8f9; } [data-style="neon"] .horarios-seats-available { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
[data-style="neon"] .horarios-seats-low { background: rgba(245,158,11,.1); color: #fbbf24; border: 1px solid rgba(245,158,11,.3); }
[data-style="neon"] .horarios-seats-full { background: rgba(244,63,94,.1); color: #fb7185; border: 1px solid rgba(244,63,94,.3); } [data-style="neon"] .horarios-modal-backdrop { background: rgba(0,0,0,.8); }
[data-style="neon"] .horarios-reservation-modal { background: #0f172a; border: 1px solid rgba(6,182,212,.3); border-radius: 8px; box-shadow: 0 0 40px rgba(6,182,212,.1); }
[data-style="neon"] .horarios-reservation-header { border-bottom-color: rgba(6,182,212,.2); }
[data-style="neon"] .horarios-reservation-header h3 { color: #06b6d4; text-shadow: 0 0 8px rgba(6,182,212,.3); }
[data-style="neon"] .horarios-reservation-close { color: #475569; }
[data-style="neon"] .horarios-field label { color: #67e8f9; }
[data-style="neon"] .horarios-field input,
[data-style="neon"] .horarios-field select,
[data-style="neon"] .horarios-field textarea { background: rgba(6,182,212,.05); color: #e0f2fe; border: 1px solid rgba(6,182,212,.2); border-radius: 6px; }
[data-style="neon"] .horarios-field input:focus,
[data-style="neon"] .horarios-field select:focus,
[data-style="neon"] .horarios-field textarea:focus { border-color: #06b6d4; box-shadow: 0 0 12px rgba(6,182,212,.25); }
[data-style="neon"] .horarios-submit-btn { background: transparent; color: #22d3ee; border: 2px solid #06b6d4; border-radius: 6px; box-shadow: 0 0 16px rgba(6,182,212,.2); text-transform: uppercase; letter-spacing: 2px; }
[data-style="neon"] .horarios-submit-btn:hover:not(:disabled) { background: #06b6d4; color: #020617; box-shadow: 0 0 30px rgba(6,182,212,.5); }
[data-style="neon"] .horarios-form-message.success { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
[data-style="neon"] .horarios-form-message.error { background: rgba(244,63,94,.1); color: #fb7185; border: 1px solid rgba(244,63,94,.3); } [data-style="neon"] .horarios-no-results { color: #334155; }
[data-style="neon"] .horarios-loading { color: #334155; }
[data-style="neon"] .horarios-spinner { border-color: rgba(6,182,212,.2); border-top-color: #06b6d4; } [data-style="organico"] .horarios-container { color: #3c2415; }
.horarios-schedule-instance[data-style="organico"] { background: #fefaf6; padding: 28px; border-radius: 24px; border: 2px solid #e8d5c0; } [data-style="organico"] .horarios-filter-select { background: #fef7ed; color: #78350f; border: 2px solid #d6b88d; border-radius: 50px; padding: 10px 18px; }
[data-style="organico"] .horarios-filter-select:focus { border-color: #92400e; box-shadow: 0 0 0 4px rgba(146,64,14,.1); }
[data-style="organico"] .horarios-filter-reset { background: #dc2626; color: #fff; border-radius: 50px; } [data-style="organico"] .horarios-view-toggle { background: #f5e6d3; border-radius: 50px; border: 2px solid #d6b88d; }
[data-style="organico"] .horarios-view-btn { color: #92400e; border-radius: 50px; }
[data-style="organico"] .horarios-view-btn.active { background: #92400e; color: #fef7ed; box-shadow: 0 4px 12px rgba(146,64,14,.2); } [data-style="organico"] .horarios-classic-table { background: #fffbf5; border-radius: 18px; box-shadow: 0 4px 20px rgba(146,64,14,.06); border: 2px solid #e8d5c0; }
[data-style="organico"] .horarios-classic-table th { background: #92400e; color: #fef7ed; letter-spacing: 1.5px; }
[data-style="organico"] .horarios-classic-table td { border-color: #f0e0cc; color: #3c2415; }
[data-style="organico"] .horarios-classic-time { color: #92400e; }
[data-style="organico"] .horarios-classic-cell:hover:not(.horarios-classic-empty) { background: #fef3e2; }
[data-style="organico"] .horarios-classic-empty { background: #fdf8f0; } [data-style="organico"] .horarios-day-col { background: #fffbf5; border-radius: 20px; border: 2px solid #e8d5c0; box-shadow: 0 4px 16px rgba(146,64,14,.06); }
[data-style="organico"] .horarios-day-col:hover { box-shadow: 0 8px 28px rgba(146,64,14,.1); }
[data-style="organico"] .horarios-day-header { background: #92400e; color: #fef7ed; letter-spacing: 2px; border-radius: 0; }
[data-style="organico"] .horarios-class-card { background: #fffbf5; border: 1.5px solid #e8d5c0; border-radius: 14px; }
[data-style="organico"] .horarios-class-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(146,64,14,.08); border-color: #c9a06c; }
[data-style="organico"] .horarios-card-content { border-top: 3px solid #c9a06c; }
[data-style="organico"] .horarios-class-name { color: #3c2415; }
[data-style="organico"] .horarios-class-name a:hover { color: #92400e; }
[data-style="organico"] .horarios-class-time { color: #78350f; }
[data-style="organico"] .horarios-meta-tag { color: #a16207; }
[data-style="organico"] .horarios-empty-day { color: #c9a06c; }
[data-style="organico"] .horarios-btn-reserve { background: #92400e; color: #fef7ed; border-radius: 50px; letter-spacing: .5px; }
[data-style="organico"] .horarios-btn-reserve:hover { background: #78350f; box-shadow: 0 4px 16px rgba(146,64,14,.25); } [data-style="organico"] .horarios-list-day-header { color: #92400e; border-bottom: 3px solid #c9a06c; border-bottom-style: dotted; letter-spacing: 1px; }
[data-style="organico"] .horarios-list-item { background: #fffbf5; border: 1.5px solid #e8d5c0; border-radius: 16px; }
[data-style="organico"] .horarios-list-item:hover { border-color: #c9a06c; box-shadow: 0 6px 20px rgba(146,64,14,.08); }
[data-style="organico"] .horarios-list-info h4 { color: #3c2415; }
[data-style="organico"] .horarios-list-info h4 a:hover { color: #92400e; }
[data-style="organico"] .horarios-list-details { color: #78350f; }
[data-style="organico"] .horarios-list-image { border-radius: 50%; } [data-style="organico"] .horarios-calendar { background: #fffbf5; border: 2px solid #e8d5c0; border-radius: 18px; }
[data-style="organico"] .horarios-cal-header { background: #fef3e2; border-bottom: 2px solid #e8d5c0; }
[data-style="organico"] .horarios-cal-month { color: #92400e; letter-spacing: 1px; }
[data-style="organico"] .horarios-cal-dow { background: #fdf8f0; color: #92400e; border-bottom-color: #e8d5c0; letter-spacing: 1px; }
[data-style="organico"] .horarios-cal-day { border-color: #f0e0cc; }
[data-style="organico"] .horarios-cal-day:hover { background: #fef3e2; }
[data-style="organico"] .horarios-cal-day-empty { background: #fdf8f0; }
[data-style="organico"] .horarios-cal-today { background: #fef3e2; }
[data-style="organico"] .horarios-cal-today .horarios-cal-date { background: #92400e; color: #fef7ed; }
[data-style="organico"] .horarios-cal-date { color: #78350f; }
[data-style="organico"] .horarios-cal-event { background: #fef3e2; border: 1px solid #e8d5c0; border-radius: 8px; }
[data-style="organico"] .horarios-cal-event:hover { background: #fde68a; border-color: #c9a06c; }
[data-style="organico"] .horarios-cal-event-time { color: #92400e; }
[data-style="organico"] .horarios-cal-event-name { color: #3c2415; }
[data-style="organico"] .horarios-cal-detail { background: #fffbf5; border: 2px solid #e8d5c0; border-radius: 18px; }
[data-style="organico"] .horarios-cal-detail-inner h3 { color: #3c2415; }
[data-style="organico"] .horarios-cal-detail-time { color: #92400e; } [data-style="organico"] .horarios-tl-day-label { color: #92400e; border-right: 3px dotted #c9a06c; letter-spacing: 1px; }
[data-style="organico"] .horarios-tl-item { background: #fffbf5; border: 1.5px solid #e8d5c0; border-radius: 14px; }
[data-style="organico"] .horarios-tl-item:hover { border-color: #c9a06c; box-shadow: 0 6px 20px rgba(146,64,14,.08); transform: translateX(4px); }
[data-style="organico"] .horarios-tl-dot { box-shadow: 0 0 0 4px rgba(146,64,14,.1); }
[data-style="organico"] .horarios-tl-time { color: #92400e; }
[data-style="organico"] .horarios-tl-name { color: #3c2415; }
[data-style="organico"] .horarios-tl-name a:hover { color: #92400e; }
[data-style="organico"] .horarios-tl-meta { color: #78350f; } [data-style="organico"] .horarios-tt { background: #fffbf5; border: 2px solid #e8d5c0; border-radius: 18px; }
[data-style="organico"] .horarios-tt-corner { background: #78350f !important; }
[data-style="organico"] .horarios-tt-day-head { border-right-color: rgba(255,255,255,.3); }
[data-style="organico"] .horarios-tt-time-cell { background: #fdf8f0; color: #92400e; border-bottom-color: #e8d5c0; }
[data-style="organico"] .horarios-tt-cell { border-color: #f0e0cc; }
[data-style="organico"] .horarios-tt-empty { background: #fdf8f0; }
[data-style="organico"] .horarios-tt-class-name { color: #3c2415; }
[data-style="organico"] .horarios-tt-class-name a:hover { color: #92400e; }
[data-style="organico"] .horarios-tt-level { color: #78350f; }
[data-style="organico"] .horarios-tt-hours { color: #92400e; }
[data-style="organico"] .horarios-tt-teacher { color: #a16207; }
[data-style="organico"] .horarios-tt-reserve { background: #92400e; color: #fef7ed; border-radius: 50px; }
[data-style="organico"] .horarios-tt-reserve:hover { background: #78350f; box-shadow: 0 4px 12px rgba(146,64,14,.25); }
[data-style="organico"] .horarios-tt-mob-day { background: #fffbf5; border: 2px solid #e8d5c0; border-radius: 18px; }
[data-style="organico"] .horarios-tt-mob-name { color: #3c2415; }
[data-style="organico"] .horarios-tt-mob-time { color: #92400e; }
[data-style="organico"] .horarios-tt-mob-meta { color: #a16207; } [data-style="organico"] .horarios-seats-available { background: #d9f99d; color: #365314; border: 1px solid #a3e635; }
[data-style="organico"] .horarios-seats-low { background: #fef3c7; color: #78350f; border: 1px solid #fbbf24; }
[data-style="organico"] .horarios-seats-full { background: #fecaca; color: #7f1d1d; border: 1px solid #f87171; } [data-style="organico"] .horarios-modal-backdrop { background: rgba(60,36,21,.55); }
[data-style="organico"] .horarios-reservation-modal { background: #fffbf5; border: 2px solid #e8d5c0; border-radius: 20px; }
[data-style="organico"] .horarios-reservation-header { border-bottom-color: #e8d5c0; }
[data-style="organico"] .horarios-reservation-header h3 { color: #3c2415; }
[data-style="organico"] .horarios-field label { color: #3c2415; }
[data-style="organico"] .horarios-field input,
[data-style="organico"] .horarios-field select,
[data-style="organico"] .horarios-field textarea { background: #fef7ed; color: #3c2415; border: 2px solid #e8d5c0; border-radius: 14px; }
[data-style="organico"] .horarios-field input:focus,
[data-style="organico"] .horarios-field select:focus,
[data-style="organico"] .horarios-field textarea:focus { border-color: #92400e; box-shadow: 0 0 0 4px rgba(146,64,14,.08); }
[data-style="organico"] .horarios-submit-btn { background: #92400e; color: #fef7ed; border-radius: 50px; letter-spacing: .5px; }
[data-style="organico"] .horarios-submit-btn:hover:not(:disabled) { background: #78350f; box-shadow: 0 6px 20px rgba(146,64,14,.25); }
[data-style="organico"] .horarios-form-message.success { background: #ecfccb; color: #365314; }
[data-style="organico"] .horarios-form-message.error { background: #fecaca; color: #7f1d1d; } [data-style="organico"] .horarios-no-results { color: #a16207; }
[data-style="organico"] .horarios-loading { color: #a16207; }
[data-style="organico"] .horarios-spinner { border-color: #e8d5c0; border-top-color: #92400e; }