/* Estilos para a seção de convênios */
.convenios {
    padding: 80px 0;
}

.convenios .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.convenios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.convenio-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    /* Removido qualquer animação, transição ou opacidade */
}

.convenio-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.convenio-card img {
    max-width: 120px;
    max-height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.convenio-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.convenios-info {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.convenios-info p {
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .convenios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .convenios-grid {
        grid-template-columns: 1fr;
    }
}
