        html.lenis {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: white;
            overflow-x: hidden;
            margin: 0;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }

        /* NAVBAR */
        .navbar {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(209, 247, 41, 0.2);
            z-index: 1000;
        }

        .nav-link {
            color: white !important;
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
            background: none;
        }

        .navbar-brand {
            font-weight: 900;
            color: var(--primary) !important;
        }

        /* SECCIONES */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 100px 0;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(30px);
            border-left: 6px solid var(--primary);
            padding: 3rem;
            border-radius: 4px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
            width: 100%;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
        }

        h2 {
            font-weight: 900;
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* VIMEO CONTAINER */
        .vimeo-container {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #000;
            border-radius: 4px;
            border: 1px solid rgba(209, 247, 41, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .vimeo-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* MOSAICO DE GALERÍA */
        .gallery-container {
            perspective: 1000px;
            margin-top: 0rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out;
        }

        .gallery-item {
            aspect-ratio: 1/1;
            /* Cuadrados siempre */
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
            border: 1px solid rgba(209, 247, 41, 0.2);
            background: #111;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            transition: opacity 0.3s, transform 0.5s;
        }

        .gallery-item:hover img {
            opacity: 1;
            transform: scale(1.1);
        }

        /* LIGHTBOX CON TRANSICIÓN SUAVE */
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            /* Usamos flex para centrar */
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 40px;

            /* Lógica de opacidad suave */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out, visibility 0.5s;
        }

        #lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        #lightbox img {
            max-width: 95%;
            max-height: 85vh;
            width: auto;
            /* Permite que la imagen sea ancha */
            box-shadow: 0 0 50px rgba(209, 247, 41, 0.1);
            border-radius: 4px;
            transform: scale(0.95);
            transition: transform 0.5s ease;
        }

        #lightbox.active img {
            transform: scale(1);
        }

        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 40px;
            color: var(--primary);
            font-size: 3rem;
            cursor: pointer;
            z-index: 2001;
        }

        /* FOOTER ELABORADO */
        footer {
            background: #050505;
            padding: 80px 0 30px 0;
            border-top: 1px solid rgba(209, 247, 41, 0.1);
            position: relative;
            z-index: 10;
        }

        .footer-title {
            color: var(--primary);
            font-weight: 900;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.8rem;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-contact-item i {
            color: var(--primary);
            margin-right: 12px;
            margin-top: 4px;
        }

        .social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--primary);
            color: black;
            transform: translateY(-5px);
        }

        .legal-bar {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .btn-info-extra {
            font-size: 1.3rem;
            /* Tamaño grande */
            font-weight: 600;
            /* Negrita */
            color: #ffffff;
            /* Color blanco */
            text-decoration: none;
            /* Quitar subrayado */
            letter-spacing: 2px;
            /* Espaciado entre letras profesional */
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            display: inline-block;
        }

        .btn-info-extra:hover {
            color: var(--primary);
            /* Color de acento al pasar el mouse */
            transform: translateX(15px);
            /* Pequeño desplazamiento a la derecha */
        }

        footer {
            padding: 60px 0;
            background: black;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }