

    .evento-card {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        transition: 0.2s;
    }
    .evento-card:hover { transform: translateY(-3px); }

    .chip {
        display: inline-block;
        background: #e9eefc;
        color: #3a54d6;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-right: 6px;
        font-weight: 500;
    }
    .chip-secondary { background: #ffe8d6; color: #c76b28; }
    .chip-virtual { background: #e1f7f0; color: #1d8c68; }

    .link-convocatoria {
        font-weight: 600;
        text-decoration: none;
        color: #000;
    }

    .calendar-box {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    }

    /* ===== CALENDARIO ===== */
    .calendar-header,
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        gap: 10px;
    }

    .calendar-header div {
        font-weight: bold;
        color: #1b1b1b;
    }

    .calendar-day {
        padding: 6px 0;
        cursor: pointer;
        color: #6c7581;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .calendar-day:hover {
        background: #f0f0f0;
    }

    .calendar-day.active {
        border: 2px solid #d87c34;
        color: #d87c34;
        font-weight: bold;
    }

    /* Punto indicador de evento */
    .event-dot {
        width: 6px;
        height: 6px;
        background: #d87c34;
        border-radius: 50%;
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
    }
