
              /* CONTENEDOR PRINCIPAL */
              /* Override: el grupo WP parent tiene padding y max-width; los anulamos para hero full-bleed */
              .hero-flex-container {
                max-width: 100% !important;
                width: 100vw !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
              }

              .hero-tabs-container {
                position: relative;
                width: 100%;
                height: 100vh;
                min-height: 700px;
                overflow: hidden;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
              }

              .tech-hero-header {
                position: absolute;
                top: 5px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 8px 18px;
                border-radius: 999px;
                background: rgba(0, 128, 238, 0.3);
                /* background: linear-gradient(
      90deg,
      rgba(0, 180, 255, 0.7) 100%,
      rgba(0, 128, 238, 0.75) 0%
    ); */
                backdrop-filter: blur(10px);
                color: #ffffff;
                font-size: 0.9rem;
                font-weight: 500;
                letter-spacing: 0.02em;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
                z-index: 30;
              }

              /*  .tech-hero-logo {
    display: block;
    width: 140px;
    height: 32px;
    background-image: url('/ruta/a/tu-logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  } */

              /* PESTAÑAS DE NAVEGACIÓN */
              .hero-tabs {
                position: absolute;
                top: 63%;
                left: 50%;
                width: auto;
                height: 220px;
                padding: 10px;
                gap: 15px;
                border-radius: 30px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transform: translateX(-50%);
                background: rgba(0, 0, 0, 0.5);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(10px);
                /* Efecto moderno */
                z-index: 10;
              }

              .hero-tabs li {
                cursor: pointer;
                width: 160px;
                height: 180px;
                min-width: 100px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                text-align: center;
                padding: 25px 10px 10px 10px;
                gap: 5px;
                color: white;
                border-radius: 20px;
                transition: all 0.3s ease;
                font-weight: 600;
                font-size: 1.1rem;
                line-height: 1.3;
                background: rgba(0, 0, 0, 0.5);
                border: 2px solid rgba(255, 255, 255, 0.15);
                position: relative;
                overflow: hidden;
              }

              .tab-title {
                font-weight: 700;
                font-size: 1.0rem;
                line-height: 1.1;
                display: block;
              }

              .tab-subtitle {
                font-weight: 500;
                font-size: 0.9rem;
                color: #eef2f7;
                /* Un blanco azulado suave */
                display: block;
              }

              /* EFECTO EN TAB ACTIVO - INTERCAMBIAR FORMATO */
              .hero-tabs li.active .tab-title {
                font-weight: 500;
                font-size: 0.9rem;
                color: white;
              }

              .hero-tabs li.active .tab-subtitle {
                font-weight: 700;
                font-size: 1.0em;
                color: #ffffff;
              }

              .hero-tabs li:hover {
                background: rgba(10, 124, 255, 0.8);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(10, 124, 255, 0.4);
              }

              .hero-tabs li.active {
                background: linear-gradient(90deg, #0a7cff 0%, #005acc 100%);
                transform: scale(1.1);
                box-shadow: 0 0 20px rgba(10, 124, 255, 0.7);
                border-color: rgba(255, 255, 255, 0.3);
                font-weight: 700;
                animation: pulse 2s infinite;
              }

              .hero-tabs li::after {
                content: "";
                position: absolute;
                top: auto;
                bottom: 20px;
                left: 55%;
                transform: translateX(-50%) scale(1.1);
                width: 70px;
                height: 70px;
                background-size: 85% auto;
                /* Ajusta proporcionalmente */
                /*contain;*/
                background-repeat: no-repeat;
                opacity: 0.5;
                filter: grayscale(100%) brightness(200%);
                /* Efecto blanco inactivo */
                transition: all 0.3s ease;
                z-index: 2;
                border-radius: 12px;
                /* ✅ ESQUINAS REDONDEADAS */
                overflow: hidden;
                clip-path: inset(0 round 12px);
                background-clip: padding-box;
                /* Asegura que el fondo respete el border-radius */
                -webkit-background-clip: padding-box;
              }

              /* EFECTO "BREATH" AL PASAR EL MOUSE */
              .hero-tabs li:hover {
                transform: scale(1.1);
                box-shadow: 0 0 15px rgba(10, 124, 255, 0.6);
              }

              .hero-tabs li:hover::after {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 1;
                width: 80px;
                height: 80px;
              }

              /* EFECTO HOVER EN EL ÍCONO */
              .hero-tabs li:hover::after,
              .hero-tabs li.active::after {
                opacity: 1;
                filter: none;
                /* Recupera color original */
                transform: translateX(-50%) scale(1.1);
                /* Mantiene centrado y crece */
                bottom: 25px;
                /* Sube un poquito */
              }

              /* ICONOS ESPECÍFICOS POR TAB */
              .hero-tabs li[data-target="particulares"]::after {
                background-image: url('../../images/icon-a_000_80x80.webp');
              }

              .hero-tabs li[data-target="microemprendimientos"]::after {
                background-image: url('../../images/icon-b_000_80x80.webp');
              }

              .hero-tabs li[data-target="pymes"]::after {
                background-image: url('../../images/icon-c_000_80x80.webp');
              }

              .hero-tabs li[data-target="corporaciones"]::after {
                background-image: url('../../images/icon-d_000_80x80.webp');
              }

              /* CONTENIDO DE CADA PESTAÑA */
              .hero-tab-content {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: none;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                /* background-image: none; */
                /* Pre-carga fondos */
                background-attachment: fixed !important;
                /* Parallax sutil */
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                color: white;
                padding: 0 5%;
                overflow: hidden;
              }

              /* Particulares */
              #particulares.hero-tab-content {
                background-image: url('../../images/a000_1200x670.webp');
              }

              /* Micro-Emprendimientos */
              #microemprendimientos.hero-tab-content {
                background-image: url('../../images/b000_1200x670.webp');
              }

              /* PyMEs */
              #pymes.hero-tab-content {
                background-image: url('../../images/c000_1200x670.webp');
              }

              /* Corporaciones */
              #corporaciones.hero-tab-content {
                background-image: url('../../images/d000_1200x670.webp');
              }

              .hero-tab-content.active {
                display: flex !important;
                /*    background-image: inherit; */
              }

              /* EFECTO DE SOBREPUESTA PARA LEGIBILIDAD */
              .hero-content-overlay {
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
              }

              /* CONTENIDO VISIBLE */
              .hero-content {
                z-index: 5;
                max-width: 1000px;
                padding: 0 20px;
                margin-top: 10px;
                transform: translateY(-175px);
                transition: opacity 0.4s ease;
              }

              /* EFECTO DE "FONDO" PARA TABS EN HOVER */
              .hero-tabs li:hover {
                background: rgba(10, 124, 255, 0.9);
                border: 2px solid rgba(255, 255, 255, 0.2);
              }

              .hero-headline {
                font-size: 2.7rem;
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 25px;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
              }

              .hero-subheadline {
                font-size: 1.8rem;
                font-weight: 300;
                margin-bottom: 25px;
                color: #eef2f7;
              }

              .cta-button {
                display: inline-block;
                background: linear-gradient(90deg, #0a7cff 0%, #00e0ff 100%);
                color: white;
                font-size: 1.4rem;
                font-weight: 700;
                padding: 10px 40px;
                border-radius: 50px;
                text-decoration: none !important;
                box-shadow: 0 4px 15px rgba(10, 124, 255, 0.4);
                transition: all 0.3s ease;
                border: 3px solid transparent;
              }

              .cta-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(10, 124, 255, 0.6);
                text-decoration: none !important;
                color: #070707 !important;
              }

              .cta-trust-badge {
                font-size: 1.1rem;
                color: #8aaabb;
                margin-top: 8px;
                display: block;
              }

              /* USP BOX (SIEMPRE VISIBLE) */
              .usp-box {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 40px;
                flex-wrap: wrap;
              }

              .usp-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                min-width: 150px;

                padding: 18px 10px;
                border-radius: 18px;
                background: rgba(0, 0, 0, 0.45);
                /* card oscura */
                border: 1px solid rgba(255, 255, 255, 0.12);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
              }

              .usp-icon {
                font-size: 2.1rem;
                margin-bottom: 10px;
                color: #ffffff;
                background: rgba(255, 255, 255, 0.25);
                border-radius: 5px;
                /* Convierte negro a cyan/azul */
                filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(180deg) brightness(103%) contrast(103%);
                transition: filter 0.3s ease;
              }

              .usp-item:hover .usp-icon img {
                filter: invert(78%) sepia(92%) saturate(2000%) hue-rotate(180deg) brightness(130%) contrast(107%);
              }

              .usp-title {
                font-weight: 700;
                font-size: 1.25rem;
                color: white;
                margin-bottom: 6px;
              }

              .usp-text {
                font-size: 1.1rem;
                line-height: 1.5;
                color: #eef2f7;
                text-align: center;
                max-width: 260px;
              }

              @keyframes pulse {
                0% {
                  box-shadow: 0 0 10px rgba(10, 124, 255, 0.5);
                }

                50% {
                  box-shadow: 0 0 20px rgba(10, 124, 255, 0.8);
                }

                100% {
                  box-shadow: 0 0 10px rgba(10, 124, 255, 0.5);
                }
              }

              /* RESPONSIVE */
              @media (max-width: 992px) {
                .hero-headline {
                  font-size: 2.8rem;
                }

                .hero-subheadline {
                  font-size: 1.5rem;
                }

                .usp-box {
                  flex-direction: column;
                  gap: 20px;
                }
              }

              @media (max-width: 768px) {
                .tech-hero-header {
                  top: 15px;
                  padding: 6px 14px;
                  font-size: 0.8rem;
                  gap: 10px;
                }

                .tech-hero-trust {
                  max-width: 150px;
                  text-overflow: ellipsis;
                  white-space: nowrap;
                  overflow: hidden;
                }

                .hero-tabs {
                  flex-direction: column;
                  align-items: center;
                  top: 60%;
                  padding: 8px 15px;
                  width: 90%;
                  max-width: 400px;
                }

                .hero-tabs li {
                  width: 100%;
                  min-width: auto;
                  text-align: center;
                  padding: 10px 15px;
                  font-size: 1.1rem;
                }

                .hero-headline {
                  font-size: 2.3rem;
                }

                .hero-subheadline {
                  font-size: 1.3rem;
                  margin-bottom: 30px;
                }
              }

              @media (max-width: 480px) {
                .hero-headline {
                  font-size: 2rem;
                }

                .hero-subheadline {
                  font-size: 1.1rem;
                }

                .cta-button {
                  padding: 15px 35px;
                  font-size: 1.2rem;
                }

                .usp-item {
                  margin-bottom: 20px;
                }
              }
