        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #A008B2;
            --primary-dark: #7A0689;
            --primary-light: #C844D4;
            --accent: #E040FB;
        }

        body {
            font-family: 'Sora', sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: #1a1a1a;
        }


        /* NAVBAR MODERNO */
        .navbar {
            position: fixed;
            width: 100%;

            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(160, 8, 178, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .boton-nav-desktop {
            display: none;
        }

        .navbar.scrolled {
            box-shadow: 0 12px 48px rgba(160, 8, 178, 0.15);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo-circle:hover {
            transform: scale(1.05);
        }

        .logo-circle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            filter: blur(10px);
            opacity: 0.5;
            z-index: -1;
        }

        .logo-circle i {
            color: white;
            font-size: 1.3rem;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            padding: 0.7rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: rgba(160, 8, 178, 0.1);
            color: var(--primary);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white !important;
            box-shadow: 0 4px 16px rgba(160, 8, 178, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 8, 178, 0.4);
        }

        /* MENÚ MÓVIL */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 400px;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transition: left 0.4s ease;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(160, 8, 178, 0.1);
        }

        .mobile-menu-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .close-menu {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-menu:hover {
            transform: rotate(90deg);
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            padding: 1.2rem 1.5rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            border: 2px solid rgba(160, 8, 178, 0.1);
        }

        .mobile-nav-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: translateX(10px);
            border-color: transparent;
        }

        .mobile-nav-links a i {
            font-size: 1.2rem;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
                @media (max-width: 1100px) {
            .navbar {
                width: 100%;
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .hero-carousel {
                height: 400px;
            }

            .slide-title {
                font-size: 1.8rem;
            }

            .partners-badge {
                flex-direction: column;
                text-align: center;
            }

            .partners-logos {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media screen and (min-width: 1101px) {
            .boton-nav-mobil {
                display: none;
            }

            .boton-nav-desktop {
                display: inline-block;
            }

            .mobile-menu {
                display: none;
            }

            .menu-overlay {
                display: none;
            }
        }