/* ============================================================
   ESTILOS AGENDA PREMIUM - STUDIODESS (v3.2.0)
   ============================================================ */

.mp-agenda-wrapper {
    margin: 20px 0;
    font-family: inherit;
}

/* Card Principal - Efeito de Elevação */
.mp-agenda-item {
    display: flex;
    gap: 0; /* Unindo o badge ao card */
    padding: 0; 
    margin-bottom: 25px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.mp-agenda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Badge de Data Premium (Estilo Slider) */
.mp-agenda-data-box {
    min-width: 90px;
    max-width: 90px;
    text-align: center;
    background: #ffffff;
    border: none;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0 0 0;
}

.mp-agenda-dia {
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    color: #222;
    padding: 5px 0;
}

.mp-agenda-mes-ano {
    background: #d32f2f; /* Vermelho Identidade */
    color: #ffffff !important;
    width: 100%;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Área de Conteúdo */
.mp-agenda-info {
    flex: 1;
    padding: 25px;
}

.mp-agenda-titulo {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.mp-agenda-titulo a {
    color: #274045;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mp-agenda-titulo a:hover {
    color: #d32f2f;
    text-decoration: none;
}

/* Bloco de meta (Data, Local, Horário) com destaque lateral */
.mp-agenda-meta {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    background: #f8f9fa;
    border: none;
    border-left: 3px solid #d32f2f;
}

.mp-agenda-meta strong {
    color: #274045;
}

/* Botões de Ação estilo "Pílula" */
.mp-agenda-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mp-agenda-actions a, 
.mp-agenda-actions .mp-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #ffffff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mp-agenda-actions a:hover, 
.mp-agenda-actions .mp-btn:hover {
    background: #274045;
    color: #fff;
    border-color: #274045;
    transform: translateY(-2px);
}

/* Título do mês (ex: JANEIRO 2026) */
.mp-agenda-mes {
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.2em;
    color: #274045;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

/* Visões Anuais (Grades de Meses e Anos) */
.mp-agenda-meses-grid, .mp-agenda-anos-grid {
    gap: 15px;
}

.mp-agenda-mes-card, .mp-agenda-anos-grid a {
    border-radius: 12px;
    border: 1px solid #eef2f6;
    background: #fdfdfd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.mp-agenda-mes-card:hover, .mp-agenda-anos-grid a:hover {
    background: #f7f9fb;
    border-color: #d32f2f;
    transform: translateY(-2px);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .mp-agenda-item {
        flex-direction: column;
    }
    .mp-agenda-data-box {
        min-width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 10px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .mp-agenda-mes-ano {
        width: auto;
        padding: 4px 15px;
        border-radius: 4px;
        margin-top: 0;
    }
    .mp-agenda-info {
        padding: 20px;
    }
}