/* ==============================
   FABRICANTES
============================== */

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

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

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

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

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

.fabricante-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 22px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fabricante-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0b3a6f;
}

.fabricante-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.4;
}

.fabricante-card a {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #0b3a6f;
    text-decoration: none;
    word-break: break-word;
}

.fabricante-card a:hover {
    text-decoration: underline;
}

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

/* RESPONSIVO */
@media (max-width: 768px) {
    .fabricantes-grid {
        grid-template-columns: 1fr;
    }
}
