        /* --- DESIGN SYSTEM 2026 --- */
        :root {
            /* Paleta de Colores "Deep Space" */
            --bg-main: #0a0a0a;
            --bg-secondary: #121212;
            --accent-primary: #6366f1;
            /* Indigo vibrante */
            --accent-secondary: #a855f7;
            /* Púrpura neón */
            --text-main: #ffffff;
            --text-muted: #94a3b8;

            /* Efectos */
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-blur: blur(20px);
            --glow: 0 0 50px rgba(99, 102, 241, 0.15);

            /* Espaciado */
            --container-width: 1200px;
            --radius-lg: 24px;
            --radius-md: 16px;
        }

        /* --- RESET & BASE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .nav-logo {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 60px;
            /* Aumentado para mejor visibilidad */
            width: auto;
            border-radius: 8px;
            /* Opcional: suaviza bordes si el logo es cuadrado */
            background-color: rgba(255, 255, 255, 0.1);
            /* Fondo sutil para contraste */
            border: 1px solid rgba(255, 255, 255, 0.2);
            /* Borde para definir límites */
            padding: 2px;
            /* Espacio entre borde e imagen */
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-menu li a {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .nav-menu li a:hover {
            color: var(--text-main);
        }

        /* --- HEADER (HERO) --- */
        header {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), var(--bg-main)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
        }

        header h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        header p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        /* --- SERVICES SECTION --- */
        .services {
            padding: 8rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Grid Moderno (Bento Grid Style) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.4s ease, border-color 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: var(--glow);
        }

        .card-image-wrapper {
            height: 220px;
            overflow: hidden;
        }

        .card-image-wrapper img {
            transition: transform 0.5s ease;
            object-fit: cover;
            height: 100%;
        }

        .card:hover .card-image-wrapper img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .card-footer {
            margin-top: auto;
            font-weight: 600;
            color: var(--accent-primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- PRICING SECTION --- */
        .pricing {
            padding: 5rem 0;
            background: linear-gradient(180deg, var(--bg-main) 0%, #111 100%);
        }

        .pricing-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            padding: 4rem 2rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .pricing-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .pricing-content {
            position: relative;
            z-index: 1;
        }

        .price-tag {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1;
            margin: 1.5rem 0;
            font-family: 'Outfit', sans-serif;
            color: var(--text-main);
        }

        .price-tag span {
            font-size: 1.25rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .cta-button {
            display: inline-block;
            background: var(--text-main);
            color: var(--bg-main);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 2rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        /* --- FOOTER --- */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            background-color: var(--bg-secondary);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .contact-info div {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .contact-info i {
            color: var(--accent-primary);
        }

        .social-icons {
            display: flex;
            gap: 1.5rem;
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: var(--text-main);
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            transform: rotate(10deg);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            nav {
                width: 95%;
                padding: 1rem;
            }

            .nav-menu {
                display: none;
                /* En producción usaríamos JS para un toggle, aquí simplificamos */
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-info div {
                justify-content: center;
            }
        }