/* ESTILOS DEL CUERPO Y SECCIONES INTERNAS */
body {
    background-color: #ededed;
    font-family: 'Proxima Nova', -apple-system, Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

/* Barra de beneficios (Diseño general para computadoras de escritorio) */
.benefits-bar {
    max-width: 1200px;
    margin: -20px auto 20px;
    background: white;
    display: flex;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex-wrap: wrap; 
    gap: 15px;
}

.benefit-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    font-size: 13px;
    border-right: 1px solid #eee;
}

.benefit-item:last-child {
    border-right: none;
}

/* Categorías populares */
.categories-grid {
    display: flex; 
    gap: 15px; 
    justify-content: space-between; 
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-item {
    background: white; 
    flex: 1; 
    padding: 20px; 
    text-align: center; 
    border-radius: 4px;
    min-width: 200px;
}

/* Footer responsivo */
.footer-links {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-around; 
    font-size: 13px; 
    color: #666;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links > div {
    min-width: 250px;
}

/* ========================================================
   RESPONSIVO EXCLUSIVO PARA DISPOSITIVOS MÓVILES (CELULARES)
   ======================================================== */
@media (max-width: 768px) {
    
    /* ORDEN DIRECTA: Desaparecer banner y barra de beneficios en celulares */
    #banner.hero-slider,
    .benefits-bar {
        display: none !important;
    }

    /* Ajuste de categorías populares en dos columnas para celulares */
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .category-item {
        min-width: auto !important;
    }

    /* Footer en formato vertical centrado para celulares */
    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr !important;
    }
}
