/* Tablet */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .proceso-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalogo-hero h1 {
        font-size: 2.5rem;
    }
    
    .catalogo-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Ajustes para el header en tablet */
    .header .container {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    .navigation {
        width: auto;
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .navigation {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .proceso-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .catalogo-hero {
        height: 40vh;
        margin-bottom: 40px;
    }
    
    .catalogo-hero h1 {
        font-size: 2rem;
    }
    
    .catalogo-hero p {
        font-size: 1.1rem;
    }
    
    .filtros-container h2 {
        text-align: center;
    }
    
    .filtros {
        justify-content: center;
    }
    
    .paginacion {
        flex-wrap: wrap;
    }
    
    .card-footer {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .card-footer .btn {
        width: auto;
        padding: 8px 12px !important;
    }
    
    .artesano {
        text-align: right;
        font-size: 0.7rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .filtros {
        flex-direction: column;
        align-items: center;
    }
    
    .filtro-btn {
        width: 100%;
        text-align: center;
    }
    
    .catalogo-hero {
        height: 35vh;
    }
    
    .catalogo-hero h1 {
        font-size: 1.8rem;
    }
    
    .filtro-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .alebrije-img-container {
        height: 200px;
    }
    
    .card-footer {
        flex-wrap: wrap;
    }
    
    .card-footer .btn {
        order: 1;
        width: 100%;
    }
    
    .artesano {
        order: 2;
        width: 100%;
        text-align: left;
        margin-left: 0;
        margin-top: 8px;
    }
}