       
        /* Botón Limpiar (estilo btn-cta) */
        .btn-cta {
            background-color: var(--accent);
            color: var(--white);
            padding: 0.4rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.75rem;
            box-shadow: 0 4px 10px rgba(233, 83, 9, 0.3);
            width: 100%;
        }
        
        .btn-cta:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 84, 145, 0.3);
        }
        
        .btn-reset {
            background-color: var(--accent);
            color: var(--white);
            padding: 0.4rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.75rem;
            width: 100%;
        }
        
        .btn-reset:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
        }
        /* ========================================= */
        /* CARD DE FILTROS                           */
        /* ========================================= */
        
        .filters-card {
            background: var(--white);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-gray);
        }
        
        .filter-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }
        
        .form-select-sm, .form-control-sm {
            border: 1px solid var(--border-gray);
            border-radius: 0.5rem;
            font-size: 0.85rem;
        }
        
        .form-select-sm:focus, .form-control-sm:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.2rem rgba(233, 83, 9, 0.25);
        }
        /* ========================================= */
        /* SELECTOR DE MES                          */
        /* ========================================= */
        
        .month-selector {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .month-btn {
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .month-btn:hover, .month-btn.active {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* ========================================= */
        /* CALENDARIO                                */
        /* ========================================= */
        
        .calendar-header {
            background: var(--white);
            border-radius: 1rem 1rem 0 0;
            padding: 1rem;
            box-shadow: var(--shadow-sm);
        }
        
        .weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 0.75rem 0;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            border-radius: 0.5rem;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: var(--white);
            border-radius: 0 0 1rem 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .calendar-day {
            min-height: 130px;
            border: 1px solid var(--border-gray);
            padding: 0.5rem;
            transition: all 0.2s ease;
            background: var(--white);
            vertical-align: top;
        }
        
        .calendar-day:hover {
            background: rgba(0, 84, 145, 0.03);
        }
        
        .calendar-day.today {
            background: linear-gradient(135deg, rgba(0,84,145,0.05), rgba(233,83,9,0.05));
            border: 2px solid var(--accent);
        }
        
        .day-number {
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
            display: inline-block;
            width: 28px;
            height: 28px;
            line-height: 28px;
            text-align: center;
            border-radius: 50%;
            margin-bottom: 0.5rem;
        }
        
        .calendar-day.today .day-number {
            background: var(--accent);
            color: var(--white);
        }
        
        /* ========================================= */
        /* EVENTOS                                   */
        /* ========================================= */
        
        .event-item {
            font-size: 0.65rem;
            padding: 0.2rem 0.3rem;
            margin-bottom: 0.2rem;
            border-radius: 0.25rem;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .event-item:hover {
            transform: translateX(2px);
            filter: brightness(0.95);
        }
        
        .event-capacitacion {
            background: #e3f2fd;
            color: #005491;
            border-left: 3px solid #005491;
        }
        
        .event-efemerides {
            background: #fff3e0;
            color: #E95309;
            border-left: 3px solid #E95309;
        }
        
        .event-evento {
            background: #e8f5e9;
            color: #2e7d32;
            border-left: 3px solid #2e7d32;
        }
        
        .event-otros {
            background: #f3e5f5;
            color: #7b1fa2;
            border-left: 3px solid #7b1fa2;
        }
        
        /* ========================================= */
        /* TOOLTIP                                   */
        /* ========================================= */
        
        .event-tooltip {
            position: fixed;
            background: rgba(0, 0, 0, 0.9);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            max-width: 300px;
            z-index: 1000;
            pointer-events: none;
            box-shadow: var(--shadow-md);
        }
        
        /* ========================================= */
        /* CONTADOR                                  */
        /* ========================================= */
        
        .counter-badge {
            background: var(--accent);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* ========================================= */
        /* LEYENDA                                   */
        /* ========================================= */
        
        .legend {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 1.5rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 1rem;
            box-shadow: var(--shadow-sm);
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
        }
        
        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }
        
        /* ========================================= */
        /* MODAL INSTITUCIONAL                       */
        /* ========================================= */
        
        .modal-detail .modal-content {
            border-radius: 1rem;
            border: none;
        }
        
        .modal-detail .modal-header {
            background: var(--primary);
            color: var(--white);
            border-radius: 1rem 1rem 0 0;
            border: none;
        }
        
        .modal-detail .btn-close-white {
            filter: brightness(0) invert(1);
        }
        
        /* ========================================= */
        /* RESPONSIVE                                */
        /* ========================================= */
        
        @media (max-width: 768px) {
            .calendar-day {
                min-height: 100px;
                padding: 0.25rem;
            }
            
            .day-number {
                width: 22px;
                height: 22px;
                font-size: 0.8rem;
                line-height: 22px;
            }
            
            .event-item {
                font-size: 0.55rem;
                white-space: normal;
                word-break: break-word;
            }
            
            .weekdays {
                font-size: 0.7rem;
                padding: 0.5rem 0;
            }
            
            .legend {
                gap: 0.8rem;
            }
            
            .month-btn {
                padding: 0.3rem 0.8rem;
                font-size: 0.7rem;
            }
            
            .btn-cta, .btn-reset {
                width: 100%;
                margin-top: 0.5rem;
            }
        }
        
        .pt-spacer {
            padding-top: 76px;
        }
