.cards-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.br-card-custom {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    /* Importante */
    display: flex;
    flex-direction: column;
}

.br-card-custom:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 179, 0.15);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.75rem;
}

.icon-container {
    background-color: #0066b3;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.year {
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-body {
    padding: 0 1.25rem 1.25rem;
    flex-grow: 1;
    /* Cresce para ocupar espaço */
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    color: #444;
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Faz o texto ocupar espaço */
}

.card-link {
    color: #0066b3;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    /* Empurra o link para baixo */
    transition: all 0.2s ease;
}

.card-link:hover {
    color: #005099;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
