    .navbar-saas {
        background: #ffffff;
        padding: 1rem 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-saas .container-lg {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-saas {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .logo-saas:hover {
        opacity: 0.8;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        list-style: none;
        margin: 0;
        padding: 0 2rem;
    }

    .nav-menu-item {
        position: relative;
    }

    .nav-menu-link {
        color: #1f2937;
        text-decoration: none;
        padding: 0.75rem 1.2rem;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-menu-link:hover {
        color: #7c3aed;
    }

    .nav-menu-link.dropdown-toggle::after {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
        margin-left: 4px;
    }

    .nav-menu-item:hover .nav-menu-link.dropdown-toggle::after {
        transform: rotate(45deg);
    }

    .dropdown-menu-saas {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        padding: 0.5rem 0;
        min-width: 200px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }

    .nav-menu-item:hover .dropdown-menu-saas {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item-saas {
        color: #1f2937;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-item-saas:hover {
        background: #f3f4f6;
        color: #7c3aed;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .btn-ingresar {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        color: white;
        border: none;
        padding: 0.65rem 1.8rem;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
        cursor: pointer;
    }

    .btn-ingresar:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
        color: white;
    }

    .navbar-toggler-saas {
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        background: transparent;
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .navbar-toggler-saas span {
        display: block;
        width: 24px;
        height: 2px;
        background: #1f2937;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Mobile Menu Styles */
    .offcanvas-saas {
        width: 100% !important;
        background: #ffffff;
    }

    .offcanvas-header-saas {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
    }

    .offcanvas-body-saas {
        padding: 0.75rem;
    }

    .mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-item {
        border-bottom: none;
        margin-bottom: 0.25rem;
    }

    .mobile-menu-link {
        color: #1f2937;
        text-decoration: none;
        padding: 0.95rem 1.25rem;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 400;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        border-radius: 12px;
        background: transparent;
        cursor: pointer;
        border: none;
    }

    .mobile-menu-link i {
        width: 20px;
        text-align: center;
        color: #7c3aed;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: rgba(124, 58, 237, 0.08);
        color: #7c3aed;
    }

    .mobile-menu-link.has-submenu {
        justify-content: space-between;
        padding-right: 1rem;
    }

    .mobile-menu-link.has-submenu span {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-link.has-submenu::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-right: 1.5px solid #7c3aed;
        border-bottom: 1.5px solid #7c3aed;
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }

    .mobile-menu-link.has-submenu.active::after {
        transform: rotate(45deg);
    }

    .mobile-submenu {
        background: transparent;
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-submenu.show {
        max-height: 500px;
    }

    .mobile-submenu-item {
        border-bottom: none;
        margin-bottom: 0.2rem;
    }

    .mobile-submenu-link {
        color: #4b5563;
        text-decoration: none;
        padding: 0.8rem 1.25rem 0.8rem 3.2rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        font-weight: 400;
        transition: all 0.2s ease;
        border-radius: 10px;
        background: transparent;
    }

    .mobile-submenu-link i {
        width: 16px;
        text-align: center;
        color: #a78bfa;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .mobile-submenu-link:hover,
    .mobile-submenu-link:active {
        background: rgba(124, 58, 237, 0.08);
        color: #7c3aed;
    }

    .mobile-submenu-link:hover i,
    .mobile-submenu-link:active i {
        color: #7c3aed;
    }

    .mobile-menu-footer {
        padding: 1.25rem 0.75rem 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 0.75rem;
    }

    .mobile-menu-footer .btn-ingresar {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .nav-menu {
            display: none;
        }

        .navbar-toggler-saas {
            display: flex;
        }

        .nav-actions {
            gap: 0.5rem;
        }

        .nav-actions .btn-ingresar {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 450px) {
        .btn-ingresar span {
            display: none;
        }

        .btn-ingresar {
            padding: 0.5rem 0.8rem;
        }
    }

    /* Auto-hide navbar on scroll - comportamiento solo */
    .navbar-saas {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar-saas.navbar-hidden {
        transform: translateY(-100%);
    }