/* ==========================================================================
   DISEÑO RESPONSIVE (MÓVILES Y TABLETS)
   ========================================================================== */

/* --- AJUSTES GLOBALES (Header y Footer) --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .section { padding: var(--section-padding-mobile); }
    .menu-toggle { display: block; }
    
    /* Menú lateral mobile */
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: var(--bg-surface); flex-direction: column; justify-content: center;
        transition: var(--transition-smooth); border-left: 1px solid rgba(255,255,255,0.05);
    }
    .nav-menu.active { right: 0; }
    
    .header.scrolled { padding: 12px 0; }
    .footer-grid { gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
}

/* --- AJUSTES DE LA HOME --- */
@media (max-width: 1024px) {
    .institutional-grid, .media-layout { grid-template-columns: 1fr; gap: 3rem; }
    .artists-grid, .services-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .releases-grid { grid-template-columns: repeat(2, 1fr); }
    .backstage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; }
    .authority-grid { justify-content: center; gap: 1rem; }
    .authority-item { width: 45%; justify-content: center; font-size: 0.7rem; }
    .artists-grid, .services-grid, .releases-grid, .news-grid { grid-template-columns: 1fr; }
    .backstage-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bs-large, .bs-wide { grid-column: span 1; grid-row: span 1; }
    .proposal-buttons { flex-direction: column; }
}
