/* Navbar Floating Premium Design - Estilo Pílula */

.navbar {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    max-width: 95% !important;
    height: 64px !important;
    background-color: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px !important;
    padding: 0 8px 0 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    z-index: 2000 !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quando der scroll, podemos dar uma leve diminuída ou mudar a opacidade se desejar */
.navbar.scrolled {
    top: 15px !important;
    background-color: #000000 !important;
}

.navbar .container {
    width: 100%;
    max-width: none !important;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* 2. Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 32px !important;
    width: 32px !important;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 2px;
}

.logo span {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* 3. Links de Navegação */
.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    flex-direction: row !important;
}

.nav-links a:not(.btn) {
    font-family: 'Inter', sans-serif !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.nav-links a:not(.btn):hover {
    color: #ffffff !important;
}

/* 4. Botão Principal (Comece agora) */
.navbar .btn-primary {
    background: #0066FF !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4) !important;
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .btn-primary:hover {
    background: #0052CC !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5) !important;
}

/* Esconder botão de entrar na navbar flutuante para manter o foco no CTA */
.navbar .btn-outline {
    display: none !important;
}

/* 5. Mobile Menu - Ajuste para o novo estilo */
.mobile-menu-btn {
    display: none !important;
    /* Esconde por enquanto para focar no desktop, ou ajustar se necessário */
}

@media (max-width: 900px) {
    .navbar {
        min-width: 0;
        width: 95% !important;
        padding: 0 10px 0 20px !important;
    }

    .nav-links {
        gap: 1.5rem !important;
    }

    .nav-links a:not(.btn) {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 700px) {
    .logo span {
        display: none;
    }

    .navbar .container {
        gap: 20px;
    }

    .nav-links a:not(.btn) {
        display: none !important;
        /* No mobile bem pequeno, deixamos só o logo e o botão */
    }
}