/* ==========================================================================
   7Excellence - Custom Styles globais
   ========================================================================== */

/* Navbar Transparente para Sólida */
#navbar { 
    transition: all 0.3s ease-in-out; 
}

.nav-scrolled {
    /* Fundo azul escuro super sólido ao rolar */
    background-color: #0B1E36 !important; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Ocultar scrollbar mantendo a funcionalidade (útil para listas horizontais/grids) */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Suavização de âncoras (fallback caso a classe do Tailwind falhe em algum browser antigo) */
html {
    scroll-behavior: smooth;
}

/* Cor de seleção de texto padronizada com a marca */
::selection {
    background-color: #0D76B8;
    color: #ffffff;
}
::-moz-selection {
    background-color: #0D76B8;
    color: #ffffff;
}