/* Identidad Visual MZM SpA */
:root {
    --mzm-red: #e31e24;
    --mzm-dark: #0f172a;
    --mzm-glass: rgba(30, 41, 59, 0.7);
}

/* Estilos Base */
body {
    background-color: #020617; /* bg-slate-950 */
    color: white;
}

.hero-industrial {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Tarjetas de Vidrio (Glassmorphism) */
.glass-card {
    background: var(--mzm-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Utilidades de Color */
.text-mzm-red { color: var(--mzm-red); }
.bg-mzm-red { background-color: var(--mzm-red); }

/* Colores Dinámicos para el Calendario */
.day-red { color: #e31e24 !important; }    /* Domingo */
.day-blue { color: #3b82f6 !important; }   /* Sábado */
.day-green { color: #22c55e !important; }  /* Días de semana */

/* Animaciones */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-10deg); }
    40%, 80% { transform: rotate(10deg); }
}

.animate-shake {
    animation: shake 0.5s ease-in-out infinite;
    animation-delay: 2s;
    display: inline-block;
}

/* Menú Móvil */
.hidden-menu { transform: translateX(100%); }

/* Optimización de Swiper (Carrusel) */
.swiper { width: 100%; padding-top: 60px; padding-bottom: 90px; }
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 280px;
    height: 380px;
    filter: blur(2px) grayscale(0.8);
    transition: all 0.5s ease;
    border-radius: 1.5rem;
}
.swiper-slide-active {
    filter: blur(0) grayscale(0);
    transform: scale(1.15);
    z-index: 10;
    border: 2px solid rgba(227, 30, 36, 0.5);
}