     :root {
         --bg-color: #050505;
         --text-color: #f0f0f0;
         --cursor-size: 20px;
         --font-head: 'Clash Display', sans-serif;
         --font-body: 'General Sans', sans-serif;
         --padding-x: clamp(1.25rem, 5vw, 5rem);
         --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     }

     html {
         -webkit-font-smoothing: antialiased;
         -moz-osx-font-smoothing: grayscale;
         scroll-behavior: smooth;
         overflow-x: hidden;
         width: 100%;
     }

     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         cursor: none;
     }

     @media (pointer: coarse) {
         * {
             cursor: auto !important;
         }
     }

     body {
         background-color: var(--bg-color);
         background-image: radial-gradient(circle at 50% 50%, #1c1c1c 0%, #050505 85%);
         background-attachment: fixed;
         background-size: cover;
         color: var(--text-color);
         font-family: var(--font-body);
         overflow-x: hidden;
         width: 100%;
         min-height: 100vh;
     }

     a {
         text-decoration: none;
         color: inherit;
         display: inline-block;
     }

     img,
     video {
         width: 100%;
         height: auto;
         display: block;
     }

     .noise {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         pointer-events: none;
         z-index: 900;
         opacity: 0.04;
         background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIxIi8+PC9zdmc+');
     }

     .custom-cursor {
         position: fixed;
         top: 0;
         left: 0;
         width: var(--cursor-size);
         height: var(--cursor-size);
         background-color: #ffffff;
         border-radius: 50%;
         pointer-events: none;
         z-index: 9999;
         transform: translate(-50%, -50%);
         transition: width 0.3s, height 0.3s;
         mix-blend-mode: difference;
         will-change: transform;
     }

     .custom-cursor.hovered {
         width: 80px;
         height: 80px;
     }

     nav {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         padding: 2rem var(--padding-x);
         display: flex;
         justify-content: space-between;
         align-items: center;
         z-index: 100;
         mix-blend-mode: difference;
     }

     .logo img {
         height: 100px;
         width: auto;
         filter: invert(1);
     }

     .nav-btn {
         border: 1px solid #fff;
         padding: 0.8rem 1.5rem;
         border-radius: 50px;
         font-size: 0.8rem;
         text-transform: uppercase;
         font-weight: 600;
         letter-spacing: 1px;
         transition: var(--transition-smooth);
         background: rgba(0, 0, 0, 0.3);
         backdrop-filter: blur(5px);
     }

     .nav-btn:hover {
         background: #fff;
         color: #000;
     }

     .hero {
         min-height: 100dvh;
         display: flex;
         flex-direction: column;
         justify-content: center;
         padding: 0 var(--padding-x);
         position: relative;
     }

     .bg-video-container {
         position: absolute;
         top: 0;
         right: 0;
         width: 60%;
         height: 100%;
         z-index: 0;
         opacity: 0.5;
         filter: grayscale(100%) brightness(0.6);
         -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
         mask-image: linear-gradient(to right, transparent 0%, black 50%);
         pointer-events: none;
     }

     .bg-video-container video {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .hero-text {
         font-family: var(--font-head);
         font-size: clamp(3rem, 10vw, 8rem);
         font-weight: 700;
         line-height: 0.9;
         text-transform: uppercase;
         z-index: 2;
         display: flex;
         flex-direction: column;
         margin-bottom: 1.5rem;
     }

     .hero-text .outline {
         color: transparent;
         -webkit-text-stroke: 2px #fff;
         transition: var(--transition-smooth);
     }

     @media (hover: hover) {
         .hero-text .outline:hover {
             color: #fff;
             -webkit-text-stroke: 0;
             text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
         }
     }

     .sub-text {
         font-size: clamp(1rem, 2.5vw, 1.3rem);
         max-width: 500px;
         color: #ccc;
         line-height: 1.5;
         z-index: 2;
         margin-bottom: 2rem;
     }

     .clients-section {
         padding: 2rem 0;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         background: #000;
         z-index: 10;
         position: relative;
     }

     .clients-title {
         text-transform: uppercase;
         color: #888;
         letter-spacing: 2px;
         margin-bottom: 1.5rem;
         text-align: center;
     }

     .clients-logos {
         display: flex;
         justify-content: center;
         gap: 3rem;
         flex-wrap: wrap;
         opacity: 0.6;
         padding: 0 var(--padding-x);
     }

     .client-logo {
         font-family: var(--font-head);
         font-weight: 700;
         font-size: 1.5rem;
         color: #fff;
         text-align: center;
     }

     .marquee-section {
         background: #fff;
         color: #000;
         padding: 1.2rem 0;
         transform: rotate(-2deg) scale(1.05);
         z-index: 10;
         position: relative;
         width: 100vw;
         margin-left: calc(-50vw + 50%);
         overflow: hidden;
     }

     .marquee-content {
         display: flex;
         white-space: nowrap;
         animation: scroll 15s linear infinite;
         will-change: transform;
     }

     .marquee-item {
         font-family: var(--font-head);
         font-size: 2rem;
         font-weight: 700;
         text-transform: uppercase;
         padding: 0 2rem;
     }

     @keyframes scroll {
         0% {
             transform: translateX(0);
         }

         100% {
             transform: translateX(-50%);
         }
     }

     .gallery-container {
         height: 100dvh;
         background: transparent;
         display: flex;
         align-items: center;
         overflow: hidden;
         position: relative;
     }

     .gallery-wrapper {
         display: flex;
         padding-left: var(--padding-x);
         padding-right: var(--padding-x);
         gap: 4vw;
         align-items: center;
         height: 100%;
     }

     .gallery-intro {
         min-width: 30vw;
         flex-shrink: 0;
     }

     .gallery-intro h2 {
         font-family: var(--font-head);
         font-size: 4rem;
         line-height: 1;
         margin-bottom: 1rem;
     }

     .video-card {
         flex-shrink: 0;
         width: 22vw;
         min-width: 300px;
         aspect-ratio: 9/16;
         background: #111;
         border: 1px solid #333;
         border-radius: 8px;
         overflow: hidden;
         position: relative;
         transform: scale(1);
         transition: all 0.4s ease;
     }

     .video-card video {
         width: 100%;
         height: 100%;
         object-fit: cover;
         filter: grayscale(100%);
         transition: filter 0.4s ease;
     }

     .project-info {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         padding: 1.5rem;
         background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
         z-index: 5;
         opacity: 0;
         transition: opacity 0.3s ease;
     }

     .project-info h4 {
         font-family: var(--font-head);
         font-size: 1.1rem;
         color: #fff;
         margin-bottom: 4px;
     }

     .project-info span {
         font-size: 0.75rem;
         color: #ddd;
         text-transform: uppercase;
         letter-spacing: 1px;
         font-weight: 500;
     }

     .video-card:hover video,
     .video-card.active video {
         filter: grayscale(0%);
     }

     .video-card:hover .project-info,
     .video-card.active .project-info {
         opacity: 1;
     }

     .video-card.active {
         border-color: #fff;
         box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
         transform: scale(1.02);
     }

     .audio-btn {
         position: absolute;
         bottom: 15px;
         right: 15px;
         width: 36px;
         height: 36px;
         background: rgba(0, 0, 0, 0.6);
         border: 1px solid rgba(255, 255, 255, 0.3);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         z-index: 10;
         transition: 0.3s;
     }

     .icon-mute,
     .icon-sound {
         width: 16px;
         height: 16px;
         fill: #fff;
     }

     .icon-sound {
         display: none;
     }

     .video-card.active .icon-mute {
         display: none;
     }

     .video-card.active .icon-sound {
         display: block;
     }

     .video-card.active .audio-btn {
         background: #fff;
     }

     .video-card.active .audio-btn svg {
         fill: #000;
     }

     .manifesto-section {
         padding: 8rem var(--padding-x);
         text-align: center;
     }

     .manifesto-text {
         font-size: clamp(1.5rem, 4vw, 2.5rem);
         line-height: 1.2;
         max-width: 1000px;
         margin: 0 auto;
         color: #ccc;
     }

     .highlight-word {
         color: #ffffff;
         font-weight: 700;
         display: inline-block;
         cursor: pointer;
         transition: all 0.3s ease;
     }

     .highlight-word:hover {
         text-shadow:
             0 0 10px rgba(255, 255, 255, 0.9),
             0 0 20px rgba(255, 255, 255, 0.6),
             0 0 30px rgba(255, 255, 255, 0.4);
         transform: scale(1.05);
     }

     .services-section {
         padding: 6rem var(--padding-x);
         position: relative;
         z-index: 5;
     }

     .manifesto-kicker {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         width: 100%;
         margin: 0 auto 5rem auto;
         font-family: var(--font-head);
         font-size: clamp(2rem, 5vw, 3rem);
         font-weight: 600;
         color: #fff;
         text-transform: uppercase;
         letter-spacing: 6px;
         text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
         border: none;
         padding: 0;
         text-align: center;
     }

     .manifesto-kicker::after {
         content: '';
         display: block;
         width: 80px;
         height: 3px;
         background: linear-gradient(90deg, transparent, #fff, transparent);
         margin-top: 1.5rem;
         box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
         border-radius: 2px;
     }

     .services-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
     }

     .service-item {
         position: relative;
         background: rgba(255, 255, 255, 0.02);
         border: 1px solid rgba(255, 255, 255, 0.08);
         padding: 2.5rem;
         border-radius: 4px;
         transition: all 0.4s ease;
         overflow: hidden;
         opacity: 0;
         visibility: hidden;
         will-change: transform, opacity;
     }

     .service-item:hover {
         background: rgba(255, 255, 255, 0.05);
         border-color: rgba(255, 255, 255, 0.3);
         transform: translateY(-5px);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     }

     .service-header {
         display: flex;
         justify-content: space-between;
         align-items: flex-start;
         margin-bottom: 2rem;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding-bottom: 1rem;
     }

     .service-item h3 {
         font-family: var(--font-head);
         font-size: 1.8rem;
         color: #fff;
         margin: 0;
         line-height: 1;
     }

     .service-number {
         font-family: var(--font-body);
         font-size: 0.9rem;
         color: #444;
         font-weight: 600;
         transition: color 0.3s;
     }

     .service-item:hover .service-number {
         color: #fff;
     }

     .service-item ul {
         list-style: none;
         color: #999;
         line-height: 1.6;
     }

     .service-item li {
         padding: 0.5rem 0;
         display: flex;
         align-items: center;
         gap: 10px;
         transition: transform 0.3s, color 0.3s;
     }

     .service-item li::before {
         content: "›";
         color: #555;
         font-size: 1.2rem;
         line-height: 0;
         transition: color 0.3s, padding-left 0.3s;
     }

     .service-item:hover li {
         color: #ccc;
     }

     .service-item li:hover {
         color: #fff;
         transform: translateX(5px);
     }

     .service-item li:hover::before {
         color: #fff;
         padding-left: 5px;
     }

     footer {
         padding: 6rem var(--padding-x) 2rem;
         text-align: center;
         border-top: 1px solid rgba(255, 255, 255, 0.1);
     }

     .cta-wrapper {
         position: relative;
         display: inline-flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         margin-top: 2rem;
         cursor: pointer;
         text-decoration: none;
     }

     .footer-cta {
         font-family: var(--font-head);
         font-size: clamp(3rem, 10vw, 7rem);
         line-height: 1;
         color: #fff;
         display: flex;
         align-items: center;

         /* CAMBIO 1: Espacio reducido para que esté "más pegada" */
         gap: 0.3em;

         transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
         text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
     }

     .cta-arrow {
         width: clamp(40px, 6vw, 80px);
         fill: currentColor;

         /* CAMBIO 2: La subimos visualmente 15px hacia arriba */
         transform: translateY(-15px);

         transition: transform 0.4s ease;
     }

     .cta-wrapper:hover .cta-arrow {
         transform: translate(10px, -25px) scale(1.1);
     }

     .click-indicator-container {
         margin-top: 10px;
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 5px;
         animation: bounce-glow 2s infinite ease-in-out;
         pointer-events: none;
     }

     .click-arrow-icon {
         width: 24px;
         height: 24px;
         fill: #fff;
         filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
     }

     .click-text-small {
         font-family: var(--font-body);
         font-size: 0.65rem;
         color: #aaa;
         text-transform: uppercase;
         letter-spacing: 3px;
         font-weight: 500;
     }

     @keyframes bounce-glow {

         0%,
         100% {
             transform: translateY(0);
             opacity: 0.4;
         }

         50% {
             transform: translateY(-8px);
             opacity: 1;
         }
     }



     @media (max-width: 1024px) {

         .hero-text .outline {
             animation: mobile-pulse 2s infinite ease-in-out;
         }

         .marquee-content {
             animation-duration: 5s;
         }

         .marquee-section {
             width: 100%;
             margin-left: 0;
             border-radius: 0;
             transform: rotate(-2deg) scale(1.02);
         }

         .bg-video-container {
             width: 100%;
             opacity: 0.3;
             mask-image: none;
             -webkit-mask-image: none;
         }

         .gallery-container {
             height: auto;
             display: block;
             padding: 4rem 0;
         }

         .gallery-wrapper {
             flex-direction: column;
             height: auto;
             padding: 0 var(--padding-x);
             gap: 3rem;
             transform: none !important;
         }

         .gallery-intro {
             width: 100%;
             margin-bottom: 2rem;
             text-align: left;
         }

         .gallery-intro h2 {
             font-size: 2.5rem;
         }

         .video-card {
             width: 100%;
             aspect-ratio: 9/16;
             max-width: 400px;
             margin: 0 auto;
         }

         .video-card video {
             filter: grayscale(0%);
         }

         .project-info {
             opacity: 1;
             background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
         }

         .custom-cursor {
             display: none;
         }

         .services-grid {
             grid-template-columns: 1fr;
             gap: 1.5rem;
         }

         .service-item {
             padding: 2rem;
             opacity: 1 !important;
             visibility: visible !important;
             transform: none !important;
         }

         @media (max-width: 1024px) {

             .cta-wrapper {
                 position: relative !important;
                 display: inline-block !important;
                 padding-right: 40px !important;

             }

             .footer-cta .cta-arrow {
                 position: absolute !important;
                 top: 0 !important;
                 right: 0 !important;
                 transform: translate(-50px, -5px) scale(0.9) !important;
                 margin: 0 !important;
                 width: 35px !important;
             }

             .footer-cta {
                 display: block !important;
                 text-align: center;
             }
         }

         .click-indicator-container {
             margin-top: 20px;
         }
     }