.calendar-container {
        padding-top: 120px;
        padding-bottom: 80px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .calendar-nav-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #f1f5f9;
        border-radius: 12px;
        color: #475569;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        border: 1px solid transparent;
    }

    .calendar-nav-btn:hover {
        background: #fff;
        color: #006272;
        border-color: #006272;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 98, 114, 0.1);
    }

    .today-link {
        color: #fff;
        background: #006272;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.55em;
        font-weight: 700;
        text-decoration: none;
        margin-left: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        box-shadow: 0 4px 10px rgba(0, 98, 114, 0.2);
        border: 2px solid transparent;
    }

    .today-link:hover {
        background: #00B0B9;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 176, 185, 0.4);
        text-decoration: none;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 15px;
    }

    .calendar-day-head {
        text-align: center;
        padding: 15px;
        font-weight: 800;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.75rem;
    }

    .calendar-day {
        min-height: 160px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 12px;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .calendar-day:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
        border-color: #cbd5e1;
        z-index: 2;
    }

    .calendar-day.highlight-focus {
        animation: highlightPulse 2s ease-in-out infinite;
        z-index: 5;
        border-color: rgba(0, 98, 114, 0.2);
    }

    @keyframes highlightPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(0, 98, 114, 0);
            border-color: rgba(0, 98, 114, 0.2);
        }

        50% {
            box-shadow: 0 0 25px rgba(0, 98, 114, 0.45);
            border-color: rgba(0, 98, 114, 0.7);
        }
    }

    .calendar-day.not-month {
        background: #f1f5f9;
        opacity: 0.4;
        pointer-events: none;
    }

    .calendar-day.today {
        background: #fff;
        border: 2px solid #006272;
        box-shadow: 0 0 0 4px rgba(0, 98, 114, 0.1);
    }

    .calendar-day.today .day-number {
        background: #006272;
        color: #fff;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: none;
    }

    .day-number {
        font-weight: 800;
        font-size: 1.1rem;
        color: #64748b;
        margin-bottom: 12px;
        transition: all 0.3s ease;
        display: inline-flex;
    }

    .calendar-day:hover .day-number {
        color: #1e293b;
    }

    .events-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-grow: 1;
    }

    .calendar-event {
        display: flex;
        flex-direction: column;
        padding: 10px 12px;
        font-size: 0.72rem;
        border-radius: 12px;
        text-decoration: none;
        line-height: 1.4;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        border: none;
        margin-bottom: 5px;
    }

    .calendar-event:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        filter: brightness(1.1);
    }

    .calendar-event .ev-time {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 800;
        margin-bottom: 4px;
        text-transform: uppercase;
        font-size: 0.6rem;
        padding: 3px 6px;
        background: rgba(0, 0, 0, 0.15);
        width: fit-content;
        border-radius: 6px;
    }

    .calendar-event .ev-title {
        font-weight: 700;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        letter-spacing: -0.01em;
    }

    .calendar-event .ev-sector {
        font-size: 0.55rem;
        text-transform: uppercase;
        font-weight: 800;
        opacity: 0.8;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: auto;
    }

    .calendar-event .ev-sector i {
        font-size: 0.7rem;
    }

    /* Tachado diagonal para eventos cerrados */
    .is-event-closed {
        position: relative !important;
        overflow: hidden !important;
    }

    .is-event-closed::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, transparent 48%, #ef4444 49%, #ef4444 51%, transparent 52%);
        pointer-events: none;
        z-index: 2;
        opacity: 0.6;
    }


    @media (max-width: 1200px) {
        .calendar-grid {
            gap: 10px;
        }

        .calendar-day {
            min-height: 140px;
            padding: 10px;
        }
    }

    @media (max-width: 991px) {
        .calendar-container {
            padding-top: 100px;
        }

        .calendar-header {
            flex-direction: column;
            gap: 15px;
            padding: 15px;
            text-align: center;
        }

        .calendar-nav-btn {
            width: 100%;
            justify-content: center;
            padding: 10px;
            font-size: 0.9rem;
        }

        .calendar-header .d-flex {
            order: -1;
            width: 100%;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f5f9;
        }

        .calendar-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        .calendar-day {
            min-height: auto;
            padding: 20px;
        }

        .calendar-day-head {
            display: none;
        }

        .calendar-day.not-month {
            display: none;
        }

        .day-number {
            font-size: 1.5rem;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
            width: 100%;
            display: block;
        }

        .calendar-day.today .day-number {
            border-bottom: none;
            width: 44px;
            height: 44px;
            padding-bottom: 0;
            display: flex;
            margin-bottom: 15px;
        }

        .calendar-event {
            font-size: 0.9rem;
            padding: 15px;
        }

        .calendar-event .ev-time {
            font-size: 0.8rem;
        }

        .calendar-event .ev-title {
            -webkit-line-clamp: unset;
        }
    }