        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .nav-container.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
            z-index: 101;
        }

        .nav-container:not(.scrolled) .nav-logo {
            color: white;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Menu Desktop */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .nav-container:hover .nav-menu,
        .nav-container.scrolled .nav-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-container:not(.scrolled) .nav-menu li a {
            color: white;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-menu li a:hover {
            color: #ff6b00;
        }

        /* Menu Toggle (Hamburguesa) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
            padding: 10px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #ff6b00;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .nav-container:not(.scrolled) .menu-toggle span {
            background: white;
            box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Menu Mobile */
        .nav-menu.mobile-open {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 5rem 2rem;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            opacity: 1;
            pointer-events: all;
            gap: 0;
        }

        .nav-menu.mobile-open.active {
            transform: translateX(0);
        }

        .nav-menu.mobile-open li {
            width: 100%;
            border-bottom: 1px solid #f0f0f0;
        }

        .nav-menu.mobile-open li a {
            display: block;
            padding: 1.2rem 0;
            color: #1a1a1a;
            text-shadow: none;
        }

        /* Overlay para cerrar menu mobile */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }