/* Tipografía General */
body {
    font-family: 'Inter', sans-serif;
}
.hero-title {
    line-height: 1.1;
}
.industrial-header {
    font-family: 'Space Grotesk', sans-serif;
}

/* Ajustes de Layout y Componentes */
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: 1.2fr 1fr 0.8fr;
        grid-template-rows: 250px 250px;
    }
    .card-motores {
        grid-row: span 2;
    }
    .card-hidraulica {
        grid-column: span 2;
    }
}