/* ==========================================================================
   RM Soft - Estilos Globais e Animações Customizadas (Deep Dark)
   ========================================================================== */

/* 1. Tipografia Corporativa (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

/* 2. Customização Profissional da Scrollbar (Webkit) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
    /* Fundo Deep Dark absoluto */
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    /* Borda mais escura para manter a sobriedade premium */
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
    /* Azul da marca ao passar o mouse */
}

/* 3. Animação de entrada suave para as abas (Tabs) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Detalhe visual sutil (linha lateral azul) para a aba ativa */
.tab-btn.active {
    position: relative;
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 3px;
    background-color: #3b82f6;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    /* Glow na linha lateral */
}