/* ==========================================
   Agencia BMM - Shared Styles
   ========================================== */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #181111;
}
::-webkit-scrollbar-thumb {
    background: #382929;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea2a33;
}

/* Base */
body {
    font-family: "Space Grotesk", "Noto Sans", sans-serif;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.open {
    transform: translateX(0);
}

/* Mobile overlay */
.mobile-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Pulse animation for badges */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}
