
        /* --- VARIABLES DE DISEÑO --- */
        :root {
            --bg-navy: #0B192C;
            --bg-navy-light: #162942;

            --electric-green: #39FF14;
            --electric-cyan: #00e5ff;
            --gradient-primary: linear-gradient(120deg, var(--electric-green), var(--electric-cyan));
            --gradient-border: conic-gradient(from 210deg, rgba(57, 255, 20, 0.2), transparent 50%, rgba(0, 229, 255, 0.3));

            --text-white: #FFFFFF;
            --text-gray: #A0AABF;
            --font-display: 'Inter', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;

            --transition-med: 0.35s ease;
        }

        /* --- RESET Y BASE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: radial-gradient(circle at top left, #162942 0, #0B192C 40%, #050a12 100%),
                url('imagenes/trama1.png') repeat fixed;
            background-blend-mode: soft-light;
            color: var(--text-white);
            line-height: 1.6;
            padding-top: 155px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        /* ═══════════════════════════════════════════════
           TOP BAR
        ═══════════════════════════════════════════════ */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: radial-gradient(circle, var(--electric-cyan) 0%, var(--electric-green) 100%);
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0 5%;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .top-bar-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-links a {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #0B192C;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .top-bar-links a:hover {
            opacity: 0.7;
        }

        .top-bar .separator {
            color: rgba(11, 25, 44, 0.2);
            font-size: 11px;
        }

        .top-bar-social {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: 12px;
        }

        .top-bar-social a {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(11, 25, 44, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: #0B192C;
            border: 1px solid rgba(11, 25, 44, 0.2);
            transition: all 0.25s;
        }

        .top-bar-social a:hover {
            background: #0B192C;
            color: var(--electric-green);
            border-color: #0B192C;
        }

        /* ═══════════════════════════════════════════════
           HEADER PRINCIPAL — diseño moderno frosted-glass
        ═══════════════════════════════════════════════ */
        header {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 0 5%;
            height: 115px;
            background: rgba(8, 12, 22, 0.85) url('imagenes/trama1.png') repeat;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.35s ease;
        }

        header.scrolled {
            top: 40px;
            height: 115px;
            background: rgba(5, 8, 18, 0.98) url('imagenes/trama1.png') repeat;
            border-bottom: 2px solid var(--electric-green);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
        }

        /* Logo */
        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            cursor: pointer;
            transition: opacity 0.2s;
            flex-shrink: 0;
        }

        .logo img {
            height: 90px;
            width: auto;
            filter: brightness(1.1) drop-shadow(0 0 12px rgba(0, 229, 255, 0.2));
            transition: filter 0.3s;
        }

        header.scrolled .logo img {
            height: 90px;
        }

        .logo:hover img {
            filter: brightness(1.25) drop-shadow(0 0 18px rgba(0, 229, 255, 0.35));
        }

        .logo-slogan {
            display: block;
            font-size: 0.6rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 2px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* --- HEADER SEARCH BAR --- */
        .header-search {
            position: relative;
            margin: 0 15px;
            display: flex;
            align-items: center;
        }

        .header-search input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 10px 15px 10px 38px;
            border-radius: 30px;
            width: 180px;
            font-size: 0.82rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            font-family: inherit;
        }

        .header-search input:focus {
            width: 260px;
            border-color: var(--electric-cyan);
            background: rgba(0, 229, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
            outline: none;
        }

        .header-search i {
            position: absolute;
            left: 14px;
            color: var(--electric-cyan);
            font-size: 0.9rem;
            pointer-events: none;
        }

        .header-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-results-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 400px;
            background: rgba(8, 15, 28, 0.98);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 20px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: 1200;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            margin-top: 15px;
        }

        .search-results-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .search-results-panel h4 {
            color: var(--electric-cyan);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-results-panel .suggestion-chip {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin: 0 8px 8px 0;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .search-results-panel .suggestion-chip:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: var(--electric-cyan);
            transform: scale(1.05);
        }

        /* ── Nav pill container eliminado — ahora es flat ── */
        .nav-links {
            display: flex;
            gap: 4px;
            align-items: center;
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            box-shadow: none;
            border-radius: 0;
        }

        .nav-links>a,
        .dropbtn {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.2s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
            background: transparent;
            border: none;
            white-space: nowrap;
        }

        .nav-links>a:hover,
        .dropdown:hover .dropbtn {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-links>a.active {
            color: #fff;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.07);
        }

        /* Punto indicador activo */
        .nav-links>a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--electric-green);
            box-shadow: 0 0 6px var(--electric-green);
        }

        /* Icono chevron en dropdown */
        .dropbtn .chev {
            font-size: 0.65rem;
            opacity: 0.5;
            transition: transform 0.25s, opacity 0.25s;
            margin-left: 2px;
        }

        .dropdown:hover .dropbtn .chev {
            transform: rotate(180deg);
            opacity: 1;
            color: var(--electric-green);
        }

        /* Botón CTA del header */
        .btn-gradient {
            background: linear-gradient(120deg, var(--electric-green), var(--electric-cyan));
            color: #0B192C;
            font-weight: 700;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            border: none;
            cursor: pointer;
            border-radius: 8px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: all 0.25s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-gradient:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(57, 255, 20, 0.35);
            filter: brightness(1.08);
        }

        /* ═══════════════════════════════════════════════
           MEGA MENÚ — diseño moderno con panel lateral
        ═══════════════════════════════════════════════ */
        .dropdown {
            position: static;
        }

        .dropdown-content {
            visibility: hidden;
            opacity: 0;
            position: fixed;
            top: 160px;
            /* top-bar 40px + header 120px */
            left: 0;
            right: 0;
            background: rgba(7, 11, 22, 0.97);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(57, 255, 20, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 32px 5% 36px;
            z-index: 999;
            transform: translateY(-8px);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(57, 255, 20, 0.08) inset;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .dropdown:hover .dropdown-content {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
        }

        header.scrolled~* .dropdown-content,
        header.scrolled .dropdown-content {
            top: 120px;
        }

        /* Layout interno del mega menú */
        .mega-menu-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .mega-menu-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mega-menu-col:first-child {
            padding-left: 0;
        }

        .mega-menu-col:last-child {
            border-right: none;
        }

        /* Cabecera de columna */
        .mega-menu-col h4 {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .mega-menu-col h4 i {
            color: var(--electric-cyan);
            font-size: 0.85rem;
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .mega-menu-grid-single {
            grid-template-columns: 1fr 1fr;
        }

        /* ── Tarjeta de producto en menú — diseño minimalista ── */
        .c-submenu-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 12px 10px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
            height: 180px;
        }

        .c-submenu-item:hover {
            background: rgba(57, 255, 20, 0.06);
            border-color: rgba(57, 255, 20, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .c-submenu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--electric-green), var(--electric-cyan));
            transition: width 0.25s, transform 0.25s;
            transform: translateX(-50%);
        }

        .c-submenu-item:hover::after {
            width: 100%;
        }

        .c-submenu-item__media {
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.95);
            height: 80px;
            width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            padding: 2px;
            position: relative;
        }

        .c-submenu-item__media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .c-submenu-item:hover .c-submenu-item__media img {
            transform: scale(1.08);
        }

        .c-submenu-item__badge {
            position: absolute;
            top: 5px;
            left: 5px;
            background: rgba(5, 10, 18, 0.88);
            padding: 2px 5px;
            border-radius: 4px;
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: #fff;
            border: 1px solid rgba(0, 229, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .c-submenu-item__content {
            z-index: 1;
        }

        .c-submenu-item__title {
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 3px;
            line-height: 1.2;
        }

        .c-submenu-item__subtitle {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.3;
            margin: 0;
        }

        /* Mega menú — bloque promo */
        .mega-promo {
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.06), rgba(0, 229, 255, 0.04));
            border: 1px solid rgba(57, 255, 20, 0.12);
            border-radius: 10px;
            padding: 16px;
            margin-top: 6px;
        }

        .mega-promo p {
            font-size: 0.8rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .mega-promo a {
            font-size: 0.78rem;
            color: var(--electric-cyan);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.2s;
        }

        .mega-promo a:hover {
            gap: 9px;
            color: var(--electric-green);
        }

        /* ── MEGA MENÚ — Panel tipo */
        .dropdown {
            position: static;
        }

        .dropdown-content::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .dropdown-content {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.12) 0%, rgba(0, 229, 255, 0.12) 100%),
                url('imagenes/trama1.png') repeat,
                rgba(5, 10, 18, 0.98);
            background-blend-mode: overlay, normal, normal;
            width: 90vw;
            left: 5vw;
            top: 100%;
            margin: 0;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            z-index: 1100;
            border: 2px solid var(--electric-green);
            border-top: none;
            border-radius: 0 0 30px 30px;
            padding: 40px 5%;
            box-sizing: border-box;
            transform: translateY(10px);
            transition: all 0.3s ease;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(57, 255, 20, 0.5) transparent;
        }

        .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background-color: rgba(57, 255, 20, 0.5);
            border-radius: 10px;
        }

        .dropdown:hover .dropdown-content {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            z-index: 1001;
            pointer-events: auto;
        }

        .mega-menu-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            width: 100%;
        }

        .mega-menu-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Línea vertical separadora entre familias de productos */
        .mega-menu-col:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding-right: 20px;
        }

        .mega-menu-col h4 {
            color: var(--text-white);
            font-size: 1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mega-menu-col h4 i {
            color: var(--electric-cyan);
            font-size: 1.1rem;
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 15px;
        }

        .mega-menu-grid-single {
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            justify-items: start;
        }

        .mega-promo {
            background: rgba(57, 255, 20, 0.05);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 12px;
            padding: 20px;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .mega-promo::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .mega-promo>* {
            position: relative;
            z-index: 1;
        }

        .mega-promo p {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .mega-promo a {
            font-size: 0.85rem;
            color: var(--electric-cyan);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }

        .mega-promo a:hover {
            gap: 10px;
            color: var(--electric-green);
        }

        /* --- DISEÑO DE TARJETAS PREMIUM (MENÚ) --- */
        .c-submenu-item {
            background: linear-gradient(145deg, rgba(22, 41, 66, 0.4), rgba(11, 25, 44, 0.6));
            backdrop-filter: blur(10px);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 215px;
            /* Altura extra para permitir que el texto respire y caiga en líneas si es preciso */
            width: 100%;
        }

        .c-submenu-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
            pointer-events: none;
        }

        .c-submenu-item::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.4s ease, transform 0.4s ease;
            transform: translateX(-50%);
            box-shadow: 0 -2px 10px rgba(57, 255, 20, 0.5);
        }

        .c-submenu-item:hover {
            transform: translateY(-4px);
            border-color: rgba(57, 255, 20, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            background: linear-gradient(145deg, rgba(30, 50, 80, 0.8), rgba(15, 30, 50, 0.95));
        }

        .c-submenu-item:hover::before {
            opacity: 1;
        }

        .c-submenu-item:hover::after {
            width: 100%;
        }

        .c-submenu-item__media {
            border-radius: 10px;
            position: relative;
            background: radial-gradient(circle at top, #ffffff 0%, #f1f5f9 100%);
            height: 80px;
            min-height: 80px;
            max-height: 80px;
            width: 100px;
            min-width: 100px;
            max-width: 100px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            padding: 2px;
            /* Garantiza el margen perimetral del 100% donde se ve el degradado de la caja */
            box-sizing: border-box;
        }

        .c-submenu-item__media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 8px 6px rgba(0, 0, 0, 0.15));
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .c-submenu-item:hover img {
            transform: scale(1.15) translateY(-2px);
            filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.25));
        }

        .c-submenu-item__badge {
            position: absolute;
            top: 6px;
            left: 6px;
            background: rgba(5, 10, 18, 0.85);
            backdrop-filter: blur(8px);
            padding: 4px 6px;
            border-radius: 6px;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--text-white);
            border: 1px solid rgba(0, 229, 255, 0.3);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .c-submenu-item__badge i {
            color: var(--electric-cyan);
        }

        .c-submenu-item__content {
            z-index: 1;
            padding: 2px 4px;
        }

        .c-submenu-item__title {
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 2px;
            letter-spacing: -0.2px;
            white-space: normal;
        }

        .c-submenu-item__subtitle {
            font-size: 0.7rem;
            color: var(--text-gray);
            line-height: 1.3;
            opacity: 0.9;
            font-weight: 400;
            white-space: normal;
            /* Asegurar que el subtítulo también haga saltos de línea y no se corte */
            overflow: visible;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .novedades-carousel::-webkit-scrollbar {
            display: none;
        }

        .nav-card {
            flex: 0 0 calc(40% - 20px);
            min-width: 360px;
            max-width: 500px;
            height: 380px;
            border-radius: 24px;
            scroll-snap-align: start;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background-color: var(--bg-navy-light);
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }

        .nav-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3);
            border-color: rgba(57, 255, 20, 0.3);
        }

        .nav-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: opacity 0.4s ease, transform 0.6s ease;
        }

        .nav-card:hover .nav-card-img {
            opacity: 0.85;
            transform: scale(1.05);
        }

        .nav-card-bg-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(5, 10, 18, 0.1) 0%, rgba(5, 10, 18, 0.95) 100%);
            z-index: 1;
        }

        .nav-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .nav-card-tag {
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 12px;
            align-self: flex-start;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .nav-card-subtitle {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .carousel-btn {
            position: absolute;
            top: calc(50% - 10px);
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(11, 25, 44, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
        }

        .carousel-btn:hover {
            background: var(--electric-cyan);
            color: #000;
            border-color: transparent;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 15px;
            /* Ajustado hacia adentro */
        }

        .carousel-btn.next {
            right: 15px;
            /* Ajustado hacia adentro */
        }

        @media (max-width: 1024px) {
            .nav-card {
                flex: 0 0 calc(45% - 20px);
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }
        }

        @media (max-width: 768px) {
            .highlights-section {
                padding-top: 60px;
            }

            .nav-card {
                flex: 0 0 85%;
                min-width: 280px;
            }

            .carousel-btn {
                display: none;
            }

            .highlights-header h2 {
                font-size: 1.6rem;
            }
        }

        /* --- BOTONES --- */
        .btn-gradient {
            background: var(--gradient-primary);
            color: #000;
            padding: 12px 28px;
            border-radius: 999px;
            font-weight: 800;
            font-family: var(--font-display);
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform var(--transition-med), box-shadow var(--transition-med);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(57, 255, 20, 0.4);
        }

        /* --- 1. HERO SECTION --- */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background-color: #0A0E1A;
            background-image:
                url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h20v-10h10v-20M30 60v-20h10v-10h20M0 30h-0' stroke='rgba(255,255,255,0.04)' fill='none' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(0,229,255,0.05)'/%3E%3C/svg%3E"),
                linear-gradient(90deg, #0A0E1A 0%, #0A0E1A 35%, rgba(10, 14, 26, 0.7) 55%, transparent 100%),
                url('imagenes/hero-taller.png');
            background-size: 60px 60px, cover, contain;
            background-position: top left, center, right center;
            background-repeat: repeat, no-repeat, no-repeat;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero p {
            color: var(--text-white);
            opacity: 0.9;
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 550px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
        }

        .tags {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 12px;
            border-radius: 999px;
            border: 1px solid rgba(57, 255, 20, 0.4);
            color: var(--text-white);
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
        }

        /* --- 2. BANDA DE CONFIANZA (SOCIAL PROOF) --- */
        .trust-band {
            background: #03050a;
            padding: 25px 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .trust-band p {
            font-size: 0.8rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .trust-logos {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            opacity: 0.5;
            filter: grayscale(100%);
            transition: opacity 0.3s;
        }

        .trust-logos:hover {
            opacity: 0.8;
        }

        .t-logo {
            font-size: 1.5rem;
            font-weight: 800;
            font-family: var(--font-display);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* --- SECCIONES GENÉRICAS --- */
        .section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* --- 3. SECTORES --- */
        #sectores {
            padding: 80px 0;
        }

        #sectores .section-header,
        #sectores .grid-3 {
            position: relative;
            z-index: 1;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .card-premium {
            background: linear-gradient(150deg, rgba(11, 16, 40, 0.95), rgba(6, 10, 26, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
            transition: transform var(--transition-med), border-color var(--transition-med);
            color: #FFFFFF;
        }

        .card-premium:hover {
            transform: translateY(-5px);
            border-color: rgba(57, 255, 20, 0.3);
        }

        .card-premium i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-premium h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #FFFFFF !important;
        }

        .card-premium p {
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- 4. PRODUCTO DESTACADO (Buque Insignia) --- */
        .flagship-section {
            background: radial-gradient(circle at center, rgba(11, 25, 44, 0.5) 0%, #050a12 100%);
            border-top: 1px solid rgba(57, 255, 20, 0.1);
            border-bottom: 1px solid rgba(57, 255, 20, 0.1);
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .flagship-img {
            position: relative;
        }

        .flagship-img img {
            width: 100%;
            max-width: 550px;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
            position: relative;
            z-index: 2;
        }

        .flagship-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
            z-index: 1;
        }

        .flagship-content h2 {
            font-size: 3rem;
            margin-bottom: 10px;
            line-height: 1;
        }

        .flagship-content>p {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .feature-bullets {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-bullets i {
            background: rgba(57, 255, 20, 0.1);
            color: var(--electric-green);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-bullets div h4 {
            color: var(--text-white);
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .feature-bullets div p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* --- 5. PILARES TÉCNICOS (Sección Clara para contraste) --- */
        .section-light {
            background-color: #F8FAFC;
            color: #0F172A;
        }

        .section-light .section-header p {
            color: #475569;
        }

        .section-light .text-gradient {
            background: linear-gradient(120deg, #0ea5e9, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .light-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .light-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .light-card i {
            font-size: 2.5rem;
            color: #0ea5e9;
            margin-bottom: 20px;
        }

        .light-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #0F172A;
        }

        .light-card p {
            color: #64748B;
            font-size: 0.95rem;
        }

        /* --- NEW: PREMIUM SECTION THEMES --- */
        .section-light-premium {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            color: #0F172A;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .section-light-premium h2 {
            color: #0F172A;
        }

        .section-light-premium .section-header p {
            color: #475569;
        }

        .section-dark-premium {
            background: linear-gradient(160deg, #0B192C 0%, #050A12 100%);
            color: #FFFFFF;
            border-top: 1px solid rgba(57, 255, 20, 0.1);
            border-bottom: 1px solid rgba(57, 255, 20, 0.1);
        }

        /* --- 6. CIFRAS DE ÉXITO (Counters) --- */
        .stats-section {
            background: linear-gradient(rgba(5, 10, 18, 0.9), rgba(5, 10, 18, 0.9)), url('imagenes/hero-taller.png') center/cover;
            background-attachment: fixed;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-white);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- 7. NOTICIAS Y NOVEDADES --- */
        .news-section {
            background: #0B192C;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: rgba(16, 25, 45, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all var(--transition-med);
        }

        .news-card:hover {
            transform: translateY(-5px);
            border-color: rgba(57, 255, 20, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .news-img {
            height: 200px;
            background: linear-gradient(150deg, #162942, #050a12);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .news-img i {
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.05);
        }

        .news-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--electric-cyan);
            color: #000;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .news-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-date {
            color: var(--text-gray);
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-date i {
            color: var(--electric-green);
        }

        .news-title {
            font-size: 1.2rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .news-excerpt {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.5;
            flex: 1;
        }

        .news-link {
            color: var(--electric-cyan);
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .news-card:hover .news-link {
            gap: 10px;
            color: var(--electric-green);
        }

        /* --- 8. CALL TO ACTION FINAL --- */
        .cta-final-container {
            padding: 80px 5% 100px;
            /* Added 80px top padding instead of 0 to separate from Novedades */
        }

        .cta-final {
            background: linear-gradient(150deg, rgba(11, 25, 44, 0.95), rgba(6, 10, 26, 0.98));
            border: 1px solid rgba(57, 255, 20, 0.3);
            border-radius: 24px;
            padding: 70px 5%;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(0, 229, 255, 0.05);
        }

        .cta-final::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 210deg, transparent 45%, rgba(57, 255, 20, 0.1) 50%, transparent 55%);
            animation: rotateGlow 10s linear infinite;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes rotateGlow {
            100% {
                transform: rotate(360deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 3vw, 3rem);
            margin-bottom: 15px;
        }

        .cta-content p {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- MEGA FOOTER --- */
        .mega-footer {
            background: #111111 url('imagenes/trama2.png') repeat;
            border-top: 1px solid rgba(57, 255, 20, 0.25);
            padding: 70px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .footer-col h4 {
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-white);
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .footer-identity .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .footer-identity .footer-logo img {
            height: 60px;
            /* Tamaño aumentado */
            width: auto;
        }

        .footer-identity p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .footer-contact-item i {
            color: var(--electric-cyan);
            font-size: 0.85rem;
            width: 16px;
            text-align: center;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 2px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-col ul li a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--electric-cyan);
            transition: width 0.3s ease;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--electric-cyan);
        }

        .footer-col ul li a:hover::before {
            width: 12px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            border-color: var(--electric-cyan);
            color: var(--electric-cyan);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 229, 255, 0.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 50px;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.78rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.78rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--electric-cyan);
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* --- BOTÓN FLOTANTE (FAB) --- */
        .fab-container {
            position: fixed;
            bottom: 40px;
            left: 40px;
            z-index: 1005;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            gap: 15px;
        }

        .fab-main {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(57, 255, 20, 0.4);
            border: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .fab-main i {
            transition: transform 0.4s ease;
        }

        .fab-container.active .fab-main i {
            transform: rotate(135deg);
        }

        .fab-container:hover .fab-main {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(57, 255, 20, 0.6);
        }

        .fab-menu {
            display: flex;
            flex-direction: column-reverse;
            gap: 15px;
            position: absolute;
            bottom: 75px;
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
        }

        .fab-container.active .fab-menu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .fab-item {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(16, 25, 45, 0.9);
            border: 1px solid rgba(57, 255, 20, 0.4);
            color: var(--electric-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(20px) scale(0.8);
            opacity: 0;
            position: relative;
        }

        /* Tooltip del botón flotante */
        .fab-item::after {
            content: attr(data-tooltip);
            position: absolute;
            left: 60px;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            background: rgba(5, 10, 18, 0.9);
            color: var(--text-white);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .fab-item:hover {
            transform: scale(1.1) translateY(0) !important;
            background: rgba(57, 255, 20, 0.1);
            color: var(--electric-green);
            border-color: var(--electric-green);
        }

        .fab-item:hover::after {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .fab-container.active .fab-item {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .fab-container.active .fab-item:nth-child(1) {
            transition-delay: 0.05s;
        }

        .fab-container.active .fab-item:nth-child(2) {
            transition-delay: 0.1s;
        }

        .fab-container.active .fab-item:nth-child(3) {
            transition-delay: 0.15s;
        }

        /* Media Query para móvil */
        @media (max-width: 1024px) {
            header {
                width: calc(100% - 30px);
                left: 15px;
                top: 15px;
                padding: 12px 15px;
            }

            .nav-links {
                gap: 2px;
            }

            .nav-links>a,
            .dropbtn {
                padding: 8px 12px;
                font-size: 0.8rem;
            }

            .logo span {
                display: none;
            }

            .logo-slogan {
                font-size: 0.48rem;
            }

            .dropdown-content {
                width: 100%;
                left: 0;
                top: 100%;
            }

            .mega-menu-layout {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
                border-radius: 16px;
                width: calc(100% - 20px);
                left: 10px;
                top: 10px;
                padding: 15px;
            }

            .logo span {
                display: inline-block;
            }

            .logo-slogan {
                display: none;
            }

            .nav-links {
                width: 100%;
                justify-content: center;
                overflow-x: auto;
                padding-bottom: 5px;
            }

            .btn-gradient {
                display: none;
            }

            .dropdown-content {
                max-height: 70vh;
                overflow-y: auto;
                padding: 20px;
                left: 0;
                top: 100%;
                width: 100%;
            }

            .mega-menu-layout {
                grid-template-columns: 1fr;
            }

            .split-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .feature-bullets li {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .hero {
                background-image: linear-gradient(180deg, #050a12 0%, rgba(5, 10, 18, 0.8) 100%), url('imagenes/hero-taller.png');
                background-position: center bottom;
            }
        }

        /* --- FIXED HELP WIDGET --- */
        .fixed-help-widget {
            position: fixed;
            left: 0;
            top: 50%;
            z-index: 2000;
            display: flex;
            align-items: stretch;
            transform: translate(calc(-100% + 45px), -50%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.4));
        }

        .fixed-help-widget:hover {
            transform: translate(0, -50%);
        }

        .fixed-help-widget .help-content {
            background: linear-gradient(145deg, rgba(8, 15, 28, 0.95), rgba(5, 10, 18, 0.98));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(57, 255, 20, 0.3);
            border-left: none;
            padding: 20px 25px 20px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15px;
            border-radius: 0 0 12px 0;
        }

        .fixed-help-widget .help-content a {
            color: var(--text-white);
            font-size: 0.9rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: color 0.3s ease;
            white-space: nowrap;
            font-weight: 500;
        }

        .fixed-help-widget .help-content a i {
            color: var(--electric-cyan);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .fixed-help-widget .help-content a:hover {
            color: var(--electric-green);
        }

        .fixed-help-widget .help-tab {
            background: var(--electric-green);
            color: var(--bg-navy);
            width: 45px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            border-radius: 0 12px 12px 0;
            cursor: pointer;
        }

        .fixed-help-widget .help-tab i {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--bg-navy);
        }

        .fixed-help-widget .help-tab span {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
    