        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #060605;
            --secondary: #121212;
            --accent: #31fe79;
            --text: #f8f8f8;
            --card-bg: rgba(18, 18, 18, 0.82);
            --glow: 0 0 20px rgba(49, 254, 121, 0.45);

            /* tokens estilo allio.html (para el â€œmixâ€) */
            --green: var(--accent);
            --green2: #22d96a;
            --nav-bg: rgba(10,13,18,0.55);
            --gray: rgba(255,255,255,0.6);
            --border: rgba(255,255,255,0.08);
        }
        
        body, button, input, a {
            font-family: 'Avenir Next', 'Avenir', 'Avenir LT Std', 'Nunito Sans', -apple-system, 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { color: inherit; }

        /* NAV (tomado de allio.html y adaptado) */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 10000;
            height: 60px;
            background: var(--nav-bg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            overflow: visible;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
        }
        .nav-links a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            padding: 6px 10px;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a.nav-active {
            color: var(--green);
            font-weight: 600;
        }

        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
        }
        .nav-center img {
            height: 54px;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(49, 254, 121, 0.18));
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-right-sep {
            width: 1px;
            height: 20px;
            background: rgba(255,255,255,0.12);
            margin: 0 6px;
        }
        .btn-dl {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0f2a1a;
            color: var(--green);
            border: 1px solid rgba(255,255,255,0.06);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px 8px 12px;
            border-radius: 6px;
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
            transition: background 0.18s, border-color 0.18s, transform 0.15s;
        }
        .btn-dl svg { flex-shrink: 0; color: var(--green); opacity: 1; }
        .btn-dl:hover {
            background: #143a24;
            border-color: rgba(49,254,121,0.3);
            transform: translateY(-1px);
        }

        .nav-icon {
            width: 28px; height: 28px;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            border-radius: 50%;
            transition: color 0.15s, background 0.15s;
            flex-shrink: 0;
        }
        .nav-icon:hover { color: #fff; background: rgba(255,255,255,0.09); }

        main { margin-top: 60px; }

        /* HERO (mix: estructura allio.html + fondo local) */
        .hero {
            position: relative;
            min-height: calc(92vh - 60px);
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        .hero-bg video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.70) 100%);
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: flex-start;
            width: 100%;
            padding: 34px 60px 60px;
            gap: 42px;
        }

        .hero-panel {
            background: rgba(6,6,5,0.7);
            border: 1px solid rgba(255,255,255,0.1);
            border-top: 1px solid rgba(49,254,121,0.14);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(14px);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 48px rgba(0,0,0,0.4);
            margin-top: 60px;
        }
        .hero-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .hero-panel-title {
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 11px;
            color: rgba(255,255,255,0.5);
        }
        .hero-panel-badge {
            font-size: 11px;
            color: var(--green);
            background: rgba(49,254,121,0.1);
            border: 1px solid rgba(49,254,121,0.2);
            padding: 2px 8px;
            border-radius: 50px;
            font-weight: 600;
        }

        .hero-brand {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            margin-top: 120px;
            margin-bottom: 10px;
        }
        .hero-brand img {
            width: clamp(260px, 28vw, 420px);
            height: auto;
            object-fit: contain;
            filter: drop-shadow(var(--glow));
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .hero-text h1 {
            font-size: clamp(34px, 4.1vw, 62px);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 16px;
        }
        .hero-text h1 .g { color: var(--green); }
        .hero-text p {
            font-size: 15px;
            color: rgba(255,255,255,0.78);
            line-height: 1.75;
            text-align: justify;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 22px;
        }
        .hero-yt-embed {
            position: relative;
            flex: 1;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
        }
        .hero-yt-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,0.22);
            color: rgba(255,255,255,0.9);
            padding: 7px 14px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            background: rgba(255,255,255,0.04);
            transition: border-color 0.15s, background 0.15s;
        }
        .btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); }

        /* SECCIONES estilo allio */
        .sec { padding: 80px 60px; position: relative; }
        .sec:nth-child(even) { background: #080808; }
        .sec:nth-child(odd)  { background: #040404; }
        .sec::before {
            content: '';
            position: absolute;
            top: 0; left: 60px; right: 60px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(49,254,121,0.18), transparent);
        }
        .sec-title {
            font-size: clamp(28px, 3.2vw, 44px);
            font-weight: 900;
            line-height: 1.08;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .sec-title .g { color: var(--green); }
        .sec-subtitle {
            font-size: 15px;
            color: rgba(255,255,255,0.45);
            margin-bottom: 40px;
            font-weight: 400;
        }

section[id] { scroll-margin-top: 80px; }
        
        /* (header antiguo reemplazado por HERO) */
        
        .projects-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0;
        }
        
        .project-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 0;
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            transform: scale(0.97);
            opacity: 0;
            animation: fadeInScale 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
        }
        .project-card:hover {
            border-color: rgba(49,254,121,0.18);
            box-shadow: 0 0 40px rgba(49,254,121,0.06), 0 20px 40px rgba(0,0,0,0.4);
            transform: translateY(-2px) scale(1);
        }
        
        h1, h2, h3, h4, p, span, li, a, div {
            font-family: 'Avenir Next', 'Avenir', 'Avenir LT Std', 'Nunito Sans', -apple-system, 'Segoe UI', Arial, sans-serif;
        }
        h1, h2, h3 {
            font-weight: 700;
            color: white;
        }
        
        .project-card h2 {
            font-size: 2.2em;
            margin-bottom: 1em;
            position: relative;
            display: inline-block;
        }
        
        .project-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        
        .project-card:hover h2::after {
            width: 100%;
        }
        
        .series-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 0;
        }
        
        .serie-item {
            text-align: center;
            background: #111;
            border-radius: 10px;
            padding: 0;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            color: white;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.5s ease-out forwards;
        }
        
        .series-grid a:nth-child(1) { animation-delay: 0.4s; }
        .series-grid a:nth-child(2) { animation-delay: 0.5s; }
        .series-grid a:nth-child(3) { animation-delay: 0.6s; }
        .series-grid a:nth-child(4) { animation-delay: 0.7s; }
        .series-grid a:nth-child(5) { animation-delay: 0.8s; }
        .series-grid a:nth-child(6) { animation-delay: 0.9s; }
        .series-grid a:nth-child(7) { animation-delay: 1.0s; }
        
        .serie-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
            z-index: 1;
            transition: opacity 0.3s;
        }
        
        .serie-item:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(49,254,121,0.2);
            border-color: rgba(49,254,121,0.2);
        }
        
        .serie-item:hover::before {
            opacity: 0.7;
        }
        
        .serie-item img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        
        .serie-item:hover img {
            transform: scale(1.06);
        }
        
        .serie-item p {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            z-index: 2;
            margin: 0;
            padding: 10px 12px 12px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-align: left;
            color: #fff;
        }
        
        .serie-item p::after { display: none; }

        /* Stagger animation delays for series cards */
        .series-grid .serie-item:nth-child(1)  { animation-delay: 0.05s; }
        .series-grid .serie-item:nth-child(2)  { animation-delay: 0.1s; }
        .series-grid .serie-item:nth-child(3)  { animation-delay: 0.15s; }
        .series-grid .serie-item:nth-child(4)  { animation-delay: 0.2s; }
        .series-grid .serie-item:nth-child(5)  { animation-delay: 0.25s; }
        .series-grid .serie-item:nth-child(6)  { animation-delay: 0.3s; }
        .series-grid .serie-item:nth-child(7)  { animation-delay: 0.35s; }
        .series-grid .serie-item:nth-child(8)  { animation-delay: 0.4s; }
        .series-grid .serie-item:nth-child(9)  { animation-delay: 0.45s; }
        .series-grid .serie-item:nth-child(10) { animation-delay: 0.5s; }
        .series-grid .serie-item:nth-child(11) { animation-delay: 0.55s; }
        .series-grid .serie-item:nth-child(12) { animation-delay: 0.6s; }
        .series-grid .serie-item:nth-child(13) { animation-delay: 0.65s; }
        
        /* SEC LABEL */
        .sec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 10px;
            display: block;
            opacity: 0.85;
        }

        /* ABOUT CARD */
        .about-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: linear-gradient(135deg, rgba(49,254,121,0.04) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(49,254,121,0.1);
            border-left: 3px solid var(--green);
            border-radius: 12px;
            padding: 28px 32px;
            max-width: 740px;
            font-size: 15px;
            line-height: 1.75;
            color: rgba(255,255,255,0.72);
        }
        .about-icon {
            font-size: 20px;
            color: var(--green);
            margin-top: 2px;
            flex-shrink: 0;
        }
        .about-icon svg { stroke: var(--green); }

        /* DOWNLOAD BOX */
        /* DOWNLOAD HERO */
        .dl-hero {
            text-align: center;
            max-width: 740px;
            margin: 0 auto 60px;
        }
        .dl-hero-title {
            font-size: clamp(32px, 5vw, 64px);
            font-weight: 900;
            line-height: 1.08;
            color: #fff;
            margin: 8px 0 20px;
            letter-spacing: -0.02em;
        }
        .dl-hero-title .g { color: var(--green); }
        .dl-hero-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.55);
            line-height: 1.75;
            max-width: 600px;
            margin: 0 auto 32px;
        }
        .dl-hero-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }
        .dl-hero-btn-main {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--accent);
            color: #040404;
            padding: 13px 28px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 0 28px rgba(49,254,121,0.25);
        }
        .dl-hero-btn-main:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 40px rgba(49,254,121,0.4);
        }
        .dl-hero-btn-alt {
            display: inline-flex;
            align-items: center;
            padding: 13px 28px;
            border-radius: 50px;
            border: 1.5px solid rgba(255,255,255,0.22);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .dl-hero-btn-alt:hover {
            border-color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.05);
        }
        .dl-hero-img-wrap {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 40px 80px rgba(0,0,0,0.6);
        }
        .dl-hero-img {
            width: 100%;
            display: block;
        }

        /* DOWNLOAD PLATFORMS */
        .dl-platforms {
            display: flex;
            gap: 0;
            max-width: 860px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            overflow: hidden;
        }
        .dl-platform {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 36px 28px 32px;
            border-right: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.02);
            transition: background 0.2s;
        }
        .dl-platform:last-child { border-right: none; }
        .dl-platform:hover { background: rgba(255,255,255,0.04); }
        .dl-platform-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: #fff;
        }
        .dl-platform-icon svg { width: 42px; height: 42px; }
        .dl-platform-name {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
        }
        .dl-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }
        .dl-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            text-decoration: none;
            color: rgba(255,255,255,0.6);
            padding: 3px 0;
            transition: color 0.15s;
        }
        .dl-link:hover { color: #fff; }
        .dl-link-label {
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
        }
        .dl-link-sub {
            color: rgba(255,255,255,0.45);
            font-size: 12px;
        }
        .dl-soon {
            font-size: 12px;
            color: rgba(255,255,255,0.3);
            font-style: italic;
        }

        /* CONTACT */
        .contact-info {
            text-align: left;
            max-width: 580px;
            margin: 48px 0 0;
        }
        .contact-info p {
            color: rgba(255,255,255,0.55);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        
        .email {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent);
            color: #060606;
            padding: 13px 32px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: all 0.25s ease;
            text-decoration: none;
            box-shadow: 0 0 24px rgba(49,254,121,0.3), 0 4px 16px rgba(0,0,0,0.3);
        }
        
        .email:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 36px rgba(49,254,121,0.45), 0 8px 24px rgba(0,0,0,0.35);
            background: var(--green2);
        }
        
   
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            pointer-events: none;
        }
        
       
        html {
            scroll-behavior: smooth;
        }
        
       
        /* FOOTER (mix) */
        footer {
            background: var(--nav-bg);
            border-top: 1px solid var(--border);
        }
        .footer-main {
            display: flex;
            padding: 42px 60px;
            align-items: flex-start;
            gap: 64px;
            flex-wrap: wrap;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
            text-decoration: none;
            color: white;
        }
        .footer-brand img {
            height: 72px;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(49, 254, 121, 0.18));
        }
        .footer-cols {
            display: flex;
            gap: 70px;
            flex-wrap: wrap;
        }
        .footer-col h4 {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 16px;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col a {
            color: var(--green);
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.15s;
        }
        .footer-col a:hover { opacity: 0.7; }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 16px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .footer-copy {
            font-size: 13px;
            color: rgba(255,255,255,0.28);
        }
        .footer-copy a { color: var(--green); text-decoration: none; }

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .footer-socials a {
            color: rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            transition: color 0.2s;
        }
        .footer-socials a:hover { color: rgba(255,255,255,0.9); }

        @media (max-width: 980px) {
            .footer-main { padding: 34px 22px; gap: 28px; }
            .footer-bottom { padding: 14px 22px; }
            .footer-brand img { height: 52px; }
            .footer-cols { flex-wrap: wrap; gap: 24px; }
        }

        /* ---- RESPONSIVE ---- */

        /* Tablet grande / landscape */
        @media (max-width: 1100px) {
            .hero-inner { padding: 34px 36px 50px; gap: 28px; }
            .sec { padding: 70px 40px; }
        }

        /* Tablet */
        @media (max-width: 980px) {
            .hero-inner {
                grid-template-columns: 1fr;
                padding: 26px 22px 42px;
            }
            .hero-brand { margin-top: 80px; }
            .hero-brand img { width: clamp(180px, 48vw, 320px); height: auto; }
            .hero-yt-embed { aspect-ratio: 16/9; }
            .hero-cta { margin-top: 18px; }
            .sec { padding: 56px 22px; }
            .sec::before { left: 22px; right: 22px; }
            nav { padding: 0 14px; }
            .nav-links { display: none; }
            .btn-dl span { display: none; }
            .btn-dl { padding: 7px 10px; }
            .series-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
            .footer-main { padding: 34px 22px; gap: 28px; flex-direction: column; }
            .footer-cols { gap: 24px; }
            .footer-brand img { height: 52px; }
        }

        /* Móvil */
        @media (max-width: 600px) {
            .hero-inner { padding: 18px 16px 32px; gap: 20px; }
            .hero-brand { margin-top: 72px; }
            .hero-brand img { width: clamp(140px, 60vw, 260px); }
            .hero-text h1 { font-size: clamp(26px, 8vw, 40px); }
            .sec { padding: 40px 16px; }
            .sec-title { font-size: clamp(22px, 6vw, 32px); }
            .series-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .footer-main { padding: 28px 16px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .footer-socials { justify-content: center; }
            nav { padding: 0 10px; }
            .nav-right-sep { display: none; }
            .contact-info { max-width: 100%; }
            .nav-center { position: static; transform: none; margin-left: auto; }
        }
        /* ---- SERIE TOOLTIP ---- */
        #serie-tooltip {
            position: fixed;
            z-index: 9999;
            width: 290px;
            background: #0d0d0d;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 28px 60px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.04);
            pointer-events: none;
            opacity: 0;
            transform: translateY(8px) scale(0.97);
            transition: opacity 0.17s ease, transform 0.17s ease;
        }
        #serie-tooltip.st-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .st-img-wrap {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #111;
        }
        .st-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }
        .st-body { padding: 14px 16px 18px; }
        .st-name {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 6px;
            letter-spacing: 0.01em;
        }
        .st-desc {
            font-size: 12px;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            margin: 0 0 12px;
        }
        .st-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 8px;
        }
        .st-stat {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 11.5px;
            color: rgba(255,255,255,0.72);
            background: rgba(255,255,255,0.04);
            border-radius: 6px;
            padding: 5px 8px;
        }
        .st-stat-icon { width:14px; height:14px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--green); opacity:0.85; }
        .st-stat-icon svg { width:14px; height:14px; }
        .st-divider {
            height: 1px;
            background: linear-gradient(to right, rgba(49,254,121,0.2), transparent);
            margin: 0 16px 0;
        }

/* ============================================================
   CONTACT FORM (rediseñado)
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 10px;
}
.contact-visual {
    position: sticky;
    top: 90px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0b1424;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.contact-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
.contact-visual:hover img { transform: scale(1.03); }

.contact-body { min-width: 0; }
.contact-title {
    font-size: clamp(42px, 5vw, 68px);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.contact-desc {
    color: rgba(255,255,255,0.78);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 780px;
}
.contact-desc p { margin: 0 0 16px; }
.contact-desc strong { color: #fff; font-weight: 700; }
.contact-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.contact-link:hover { border-color: var(--green); }
.contact-mail-line {
    margin-top: 18px !important;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.contact-mail-line span { color: rgba(255,255,255,0.55); font-weight: 500; }
.contact-mail-line a {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px dashed rgba(49,254,121,0.45);
    padding-bottom: 1px;
}
.contact-mail-line a:hover { border-color: var(--green); }

.contact-form {
    max-width: 100%;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute;
    inset: -24px -28px;
    background:
        radial-gradient(600px 240px at 10% 0%, rgba(49,254,121,0.08), transparent 60%),
        radial-gradient(500px 260px at 100% 100%, rgba(49,254,121,0.06), transparent 65%);
    z-index: -1;
    border-radius: 24px;
    pointer-events: none;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cf-field label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cf-field .req {
    color: #ff4d6d;
    font-weight: 700;
}
.cf-input {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    overflow: hidden;
}
.cf-input::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.cf-input:hover {
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.cf-input:focus-within {
    border-color: rgba(49,254,121,0.55);
    background: rgba(49,254,121,0.03);
    box-shadow: 0 0 0 4px rgba(49,254,121,0.10), 0 10px 30px rgba(0,0,0,0.35);
}
.cf-input input,
.cf-input textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    padding: 16px 18px;
    width: 100%;
    resize: none;
    line-height: 1.55;
}
.cf-input input::placeholder,
.cf-input textarea::placeholder {
    color: rgba(255,255,255,0.38);
}
.cf-input .cf-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.45);
    margin-right: 16px;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.25s ease;
}
.cf-input:focus-within .cf-icon {
    color: var(--green);
    transform: scale(1.08);
}
.cf-input-area {
    align-items: flex-start;
}
.cf-input-area textarea {
    min-height: 140px;
    padding: 16px 18px;
}
.cf-hint {
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    margin: 0;
}
.cf-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.cf-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #060606;
    background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(49,254,121,0.28), 0 0 0 1px rgba(49,254,121,0.35) inset;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.cf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(49,254,121,0.38), 0 0 0 1px rgba(49,254,121,0.5) inset;
    filter: brightness(1.05);
}
.cf-submit:hover::before {
    transform: translateX(100%);
}
.cf-submit:active {
    transform: translateY(0);
}
.cf-submit svg { position: relative; z-index: 1; }
.cf-submit span { position: relative; z-index: 1; }
.cf-mail {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.18);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.cf-mail:hover {
    color: var(--green);
    border-color: var(--green);
}

@media (max-width: 760px) {
    .cf-row { grid-template-columns: 1fr; gap: 18px; }
    .cf-actions { flex-direction: column; align-items: stretch; }
    .cf-submit { justify-content: center; }
    .cf-mail { text-align: center; }
}
@media (max-width: 980px) {
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-visual { position: relative; top: 0; max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; }
    .contact-title { font-size: clamp(36px, 7vw, 52px); }
}

    
/* ============================================================
   SERIE PAGE (diseño tipo banner + stats)
   ============================================================ */
.serie-page { background: #000; color: var(--text); min-height: 100vh; }
.serie-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 62vh;
    min-height: 360px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, #000 100%),
        repeating-conic-gradient(#1a1a1a 0% 25%, #0f0f0f 0% 50%) 50% / 80px 80px;
}
.serie-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: saturate(1.05);
}
.serie-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    pointer-events: none;
}
.serie-banner-collabs {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    max-width: 90%;
}
.serie-banner-collabs .collab {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    opacity: 0.9;
}
.serie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px 120px;
}
.serie-title {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: #fff;
}
.serie-title .g { color: var(--green); }
.serie-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 22px;
    padding: 18px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    margin-bottom: 36px;
}
.serie-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    padding: 6px 2px;
}
.serie-stat svg { width: 18px; height: 18px; color: rgba(255,255,255,0.55); flex-shrink: 0; }
.serie-stat strong { color: #fff; font-weight: 800; margin-right: 4px; }
.serie-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    max-width: 920px;
}
.serie-body p { margin: 0 0 18px; }
.serie-body a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(49,254,121,0.35); }
.serie-body a:hover { border-color: var(--green); }
.serie-body strong { color: #fff; font-weight: 700; }
.serie-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 11px 22px 11px 16px;
    background: #0f2a1a;
    color: var(--green);
    border: 1px solid rgba(49,254,121,0.25);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.serie-back:hover { background: #143a24; border-color: var(--green); transform: translateX(-2px); }
@media (max-width: 760px) {
    .serie-stats { grid-template-columns: 1fr 1fr; }
    .serie-banner { min-height: 280px; aspect-ratio: 16 / 10; }
    .serie-container { padding: 36px 22px 80px; }
}
