/* ==============================
   ASSOCIADAS - GRID DE CARDS
============================== */

.associadas-page {
    padding: 60px 0;
}

.associadas-page .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.associadas-page .section-header h1 {
    font-size: 2.4rem;
}

.associadas-page .section-intro {
    max-width: 780px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.6;
}

.associadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.associada-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 16px;
	align-content: center;
}

.associada-card img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.associada-card span {
    display: block;
    font-size: 0.95rem;
    color: #222;
    font-weight: 500;
}

.associada-card a {
    text-decoration: none;
    color: inherit;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .associadas-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
