.bloco-agenda {
    background: #f5f5f5;
    padding: 40px 20px;
}

.bloco-agenda .bloco-titulo {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--cor-titulo, #222);
}

.agenda-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.evento {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.evento .data {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--cor-primaria, #007BFF);
    min-width: 60px;
    text-align: center;
}

.evento .info h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.evento .info p {
    margin: 5px 0 0;
    font-size: 0.95em;
    color: #666;
}