/* ==============================
   DISTRIBUIDORES
============================== */

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

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

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

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

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

.distribuidor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.distribuidor-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.distribuidor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

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