/* style.css - Optimizaciones móviles y UX */
:root {
    --bg-cream: #fbf8f1; /* Un crema más luminoso y limpio */
}

body {
    font-family: 'Nunito', 'Segoe UI', Roboto, sans-serif; /* Tipografía más moderna, redondeada y amigable */
    background-color: var(--bg-cream);
    -webkit-tap-highlight-color: transparent;
}

/* Sombras suaves 3D estilo iOS/Material You */
.shadow-app {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04) !important;
}

/* Efecto de pulsación de botones nativo */
.btn-action {
    border-radius: 1.5rem; /* Bordes mucho más redondeados */
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-action:active {
    transform: scale(0.92); /* Rebote al tocar */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important; /* La sombra se achica al apretar */
}

/* COLORES VIVOS CON GRADIENTES 3D Y CONTRASTE */
.btn-mozo {
    background: linear-gradient(135deg, #f44336, #d32f2f); /* Rojo intenso */
    color: white !important;
}
.btn-mozo i { color: rgba(255, 255, 255, 0.95); text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.btn-mozo span { color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

.btn-cuenta {
    background: linear-gradient(135deg, #ffca28, #ffb300); /* Amarillo dorado vivo */
}
.btn-cuenta i { color: rgba(0, 0, 0, 0.65); }
.btn-cuenta span { color: rgba(0, 0, 0, 0.85); font-weight: 800; }

.btn-menu {
    background: linear-gradient(135deg, #66bb6a, #43a047); /* Verde esmeralda */
}
.btn-menu i { color: rgba(0, 0, 0, 0.65); }
.btn-menu span { color: rgba(0, 0, 0, 0.85); font-weight: 800; }

.btn-jukebox {
    background: linear-gradient(135deg, #42a5f5, #1e88e5); /* Azul cielo/marítimo */
    color: white !important;
}
.btn-jukebox i { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.btn-jukebox span { color: white; font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

.btn-icebreaker {
    background: linear-gradient(135deg, #ffa726, #f57c00); /* Naranja vibrante */
    color: white !important;
}
.btn-icebreaker i { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.btn-icebreaker span { color: white; font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* Estilos para el texto de los botones */
.lh-sm {
    line-height: 1.2 !important;
}

/* Efecto de brillo de "vidrio" que pasa por los botones cada unos segundos para darle vida */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}
.btn-action::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite; /* Pasa un destello cada 6 segundos */
}
