body { font-family: 'Inter', sans-serif; }

/* Ocultar barra de rolagem no carrossel, mas manter funcionalidade */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.glass-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Gradiente TV */
.tv-gradient {
    background: linear-gradient(135deg, #001a33 0%, #0971b7 100%);
}

@media (min-width: 1024px) { #mobile-menu { display: none !important; } }

/* Animações extras */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob { animation: blob 7s infinite; }
.animation-delay-2000 { animation-delay: 2s; }