.agenda-header {
    /* background: linear-gradient(90deg, #1c70b6 60%, #25a198 100%); */
    /* color: #fff; */
    padding-bottom: 0 !important;
    text-align: center;
}
/* Layout: use a responsive grid for months */
.agenda {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.25rem; /* row-gap col-gap */
    align-items: start;
}

/* Month card */
.agenda .mes {
    background: #ffffff;
    border-left: 4px solid var(--azul, #1c70b6);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    box-shadow: 0 2px 8px rgba(19, 51, 89, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 350px;
    transition: transform .12s ease, box-shadow .12s ease;
}

/* subtle lift on hover/focus to show card interactivity */
.agenda .mes:hover,
.agenda .mes:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(19,51,89,0.06);
}

/* Month title */
.agenda .mes h3 {
    margin: 0;
    color: var(--azul, #1c70b6);
    font-family: "Bronkoh-Bold", sans-serif;
    letter-spacing: 0.04em;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    padding-bottom: 0.45rem;
}

/* Event block */
.agenda .mes .evento {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #000;
}

/* Paragraphs inside event */
.agenda .mes .evento p {
    margin: 0;
    line-height: 1.4;
    color: #222;
}

/* Strong label styling */
.agenda .mes .evento strong {
    color: var(--azul, #1c70b6);
    font-weight: 700;
}

/* Button link (visible and accessible) */
.agenda .mes .evento .btn {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.45rem 0.7rem;
    background: linear-gradient(90deg, var(--azul, #1c70b6) 60%, #25a198 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform .08s ease, box-shadow .12s ease, opacity .12s ease;
    box-shadow: 0 2px 8px rgba(28,112,182,0.12);
    align-self: flex-start;
}

/* small icon appended to buttons */
.agenda .mes .evento .btn::after {
    content: "";
    display: inline-block;
    width: 0.85rem;
    height: 0.85rem;
    margin-left: 0.45rem;
    vertical-align: -0.08rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3z'/><path d='M5 5h5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5h-2v5H5V5z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover / focus states for button */
.agenda .mes .evento .btn:hover,
.agenda .mes .evento .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28,112,182,0.14);
    outline: none;
    opacity: 0.98;
}

/* If a month has multiple events, separate them visually */
.agenda .mes .evento + .evento {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(0,0,0,0.04);
}

/* Ensure good spacing on very small screens */
@media (max-width: 520px) {
    .agenda {
        padding: 0.75rem 1rem;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.9rem;
    }
    .agenda .mes {
        padding: 0.7rem;
    }
    .agenda .mes .evento .btn {
        padding: 0.35rem 0.55rem;
    }
}

@media (max-width: 720px) {
    .agenda {
        grid-template-columns: 1fr !important;
        gap: 0.9rem !important;
        padding: 0.75rem 1rem;
    }

    .agenda .mes {
        min-height: auto;
        padding: 0.8rem;
    }

    .agenda .mes .evento .btn {
        width: auto;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }
}



/* 
.agenda-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    border-radius: 24px;

}

.agenda-content h2 {
    font-family: "Bronkoh-Bold", sans-serif;
    color: #1c70b6;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(28, 112, 182, 0.08);
}

.agenda-cards {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 36px;
    width: 100%;
    justify-content: flex-start;
}

.agenda-month-card {
    background: linear-gradient(120deg, #fff 60%, #eaf6fb 100%);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(28, 112, 182, 0.10);
    padding: 28px 22px;
    min-width: 240px;
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e0eaf6;
    transition: box-shadow 0.2s, transform 0.2s;
}

.agenda-month-card:hover {
    box-shadow: 0 8px 32px rgba(28, 112, 182, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.agenda-month-card h3 {
    font-family: "Bronkoh-Bold", sans-serif;
    font-size: 1.4rem;
    color: #21a198;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.agenda-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(28, 112, 182, 0.09);
    padding: 16px 18px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 4px solid #1c70b6;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.agenda-card:hover {
    box-shadow: 0 6px 18px rgba(28, 112, 182, 0.13);
    border-left-color: #92c01f;
}

.agenda-card p {
    font-size: 1.15rem;
    margin: 0;
    color: #333;
}

.agenda-card strong {
    color: #1c70b6;
    font-weight: bold;
} */

/* .agenda-card a {
    display: inline-block;
    color: #fff;
    background: linear-gradient(90deg, #1c70b6 60%, #25a198 100%);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 32px;
    border-radius: 100px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(28, 112, 182, 0.13);
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.agenda-card a:hover {
    background: linear-gradient(90deg, #92c01f 60%, #25a198 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(146, 192, 31, 0.18);
    transform: scale(1.04);
} */

/* Responsividade */
/* @media (max-width: 900px) {
    .agenda-cards {
        gap: 24px;
    }
    .agenda-month-card {
        min-width: 180px;
        padding: 18px 12px;
    }
    .agenda-content {
        padding: 18px 8px;
    }
}

@media (max-width: 700px) {
    .agenda-cards {
        flex-direction: column;
        gap: 16px;
    }
    .agenda-month-card {
        min-width: 0;
        width: 100%;
        padding: 14px 8px;
    }
    .agenda-content {
        width: 98%;
        gap: 24px;
        padding: 10px 2px;
    }
    .agenda-content h2 {
        font-size: 1.5rem;
    }
    .agenda-month-card h3 {
        font-size: 1.1rem;
    }
    .agenda-card p {
        font-size: 1rem;
    }
} */