:root {
      --primary: #0f172a;
      --primary2: #1d3557;

      /* Paleta mediterránea nocturna: turquesas, corales y dorados suaves */
      --accent: #22d3ee;
      /* turquesa principal */
      --accent2: #F39A1F;
      /* coral */
      --accent3: #fbbf24;
      /* dorado suave para detalles */
      --accent4: #7dd3fc;
      /* azul cielo suave */

      --bg: #020617;
      --panel: #020617;
      --text-main: #e5e7eb;
      --text-muted: #9ca3af;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      color: var(--text-main);
      background: radial-gradient(circle at top left, #020617 0, #020617 45%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    /* Fondo global con cuadrícula y niebla animada */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px,
          transparent 1px),
        linear-gradient(90deg,
          rgba(148, 163, 184, 0.08) 1px,
          transparent 1px);
      background-size: 40px 40px;
      opacity: 0.22;
      pointer-events: none;
      z-index: -3;
    }

    @keyframes bgDrift {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      50% {
        transform: translate3d(-60px, 30px, 0) scale(1.07);
      }

      100% {
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    body::after {
      content: "";
      position: fixed;
      inset: -40%;
      background:
        radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.22), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(236, 72, 153, 0.24), transparent 60%);
      opacity: 0.75;
      pointer-events: none;
      z-index: -4;
      animation: bgDrift 40s ease-in-out infinite;
    }

    /* MARCO NEÓN GENERAL (tipo LED alrededor de toda la web) */
    .page-frame {
      position: relative;
      max-width: 1240px;
      margin: 48px auto;
      border-radius: 36px;
      padding: 1px;
      background: conic-gradient(from 120deg,
          #22d3ee,
          #0f766e,
          #6366f1,
          #ec4899,
          #22d3ee);
      box-shadow:
        0 0 22px rgba(34, 197, 94, 0.4),
        0 0 40px rgba(14, 165, 233, 0.4);
      overflow: hidden;
    }

    @keyframes borderSpin {
      0% {
        filter: hue-rotate(0deg);
      }

      100% {
        filter: hue-rotate(360deg);
      }
    }

    .page-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 36px;
      padding: 1px;
      background: inherit;
      filter: blur(1px);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: borderSpin 22s linear infinite;
      pointer-events: none;
      z-index: -1;
    }

    .page-inner {
      border-radius: 34px;
      background: radial-gradient(circle at top left,
          rgba(15, 23, 42, 0.98),
          rgba(15, 23, 42, 0.96));
      padding: 40px 26px 12px;
      position: relative;
      overflow: hidden;
    }

    /* Barrido de luz cinematográfico dentro del contenedor */
    .page-inner::after {
      content: "";
      position: absolute;
      left: -20%;
      right: -20%;
      top: -40%;
      height: 40%;
      background: linear-gradient(to bottom,
          transparent,
          rgba(56, 189, 248, 0.18),
          transparent);
      mix-blend-mode: screen;
      opacity: 0.9;
      pointer-events: none;
      animation: scanDown 16s linear infinite;
    }

    @keyframes scanDown {
      0% {
        transform: translateY(-120%);
      }

      100% {
        transform: translateY(260%);
      }
    }

    @media (max-width: 900px) {
      .page-inner {
        padding: 28px 20px 10px;
      }
    }

    /* Barra de progreso de scroll neon */
    .scroll-progress {
      position: absolute;
      left: 26px;
      right: 26px;
      top: 16px;
      height: 3px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      overflow: hidden;
      pointer-events: none;
      z-index: 10;
      box-shadow: 0 0 14px rgba(15, 23, 42, 0.9);
    }

    .scroll-progress-inner {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #22d3ee, #0f766e, #fb7185);
      box-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
      transform-origin: left center;
    }

    /* Partículas flotando (suaves) */
    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.25;
      z-index: -2;
    }

    .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: radial-gradient(circle, #7dd3fc, transparent 60%);
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
      opacity: 0.8;
      animation: particleFloat 26s linear infinite;
    }

    .particle:nth-child(2) {
      width: 7px;
      height: 7px;
      background: radial-gradient(circle, #22d3ee, transparent 60%);
      animation-duration: 28s;
      animation-delay: 4s;
    }

    .particle:nth-child(3) {
      width: 4px;
      height: 4px;
      left: 70%;
      animation-duration: 30s;
      animation-delay: 8s;
    }

    @keyframes particleFloat {
      0% {
        transform: translate3d(-10px, 120%, 0);
      }

      50% {
        transform: translate3d(14px, 20%, 0);
      }

      100% {
        transform: translate3d(-10px, -40%, 0);
      }
    }

    /* HEADER / HERO */
    header {
      position: relative;
      padding: 0 0 120px;
    }

    .hero-inner {
      max-width: 1080px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Orbe decorativo futurista */
    .hero-orb {
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.6), transparent 70%),
        radial-gradient(circle at 70% 80%, rgba(22, 163, 74, 0.5), transparent 70%);
      top: -110px;
      right: -110px;
      filter: blur(3px);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
      animation: floatSlow 22s ease-in-out infinite;
    }

    @keyframes floatSlow {
      0% {
        transform: translateY(0px) scale(1);
      }

      50% {
        transform: translateY(-12px) scale(1.03);
      }

      100% {
        transform: translateY(0px) scale(1);
      }
    }

    /* NAVBAR FUTURISTA */
    @keyframes neonPulseSoft {
      0% {
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
      }

      50% {
        box-shadow:
          0 20px 40px rgba(37, 99, 235, 0.7),
          0 0 20px rgba(56, 189, 248, 0.8);
      }

      100% {
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
      }
    }


    @keyframes breathGlow {
      0% {
        box-shadow:
          0 12px 26px rgba(34, 197, 94, 0.4),
          0 0 14px rgba(190, 242, 100, 0.7);
      }

      50% {
        box-shadow:
          0 18px 40px rgba(34, 197, 94, 0.9),
          0 0 18px rgba(190, 242, 100, 1);
      }

      100% {
        box-shadow:
          0 12px 26px rgba(34, 197, 94, 0.4),
          0 0 14px rgba(190, 242, 100, 0.7);
      }
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 12px 22px;
      border-radius: 999px;
      background: radial-gradient(circle at top left,
          rgba(59, 130, 246, 0.7),
          transparent 60%),
        rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      margin-bottom: 64px;
      animation: neonPulseSoft 20s ease-in-out infinite;
      position: relative;
      z-index: 100;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Contenedor con fondo circular blanco */
    .nav-logo-bg {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border-radius: 50%;
      padding: 7px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Imagen del logo */
    .nav-logo-img {
      width: 80px;
      height: 36px;
      object-fit: contain;
    }

    .nav-logo-text {
      font-weight: 600;
      letter-spacing: 0.08em;
      font-size: 1rem;
      text-transform: uppercase;
    }

    .nav-links {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 999px;
      transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #e5e7eb;
      background: rgba(148, 163, 184, 0.15);
      transform: translateY(-1px);
    }

    .nav-cta {
      display: inline-flex;
      animation: breathGlow 6s ease-in-out infinite;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, #22d3ee, #fde68a);
      color: #0f172a;
      padding: 9px 20px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow:
        0 12px 26px rgba(34, 197, 94, 0.6),
        0 0 16px rgba(34, 197, 94, 0.8);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .nav-cta i {
      font-size: 1rem;
    }

    .nav-cta:hover {
      transform: translateY(-1px) scale(1.03);
      filter: brightness(1.06);
      box-shadow:
        0 16px 36px rgba(22, 163, 74, 0.9),
        0 0 20px rgba(190, 242, 100, 0.9);
    }

    .mobile-menu {
      display: none;
      /* Hidden on desktop */
    }

    /* Hamburger Menu Styles - Default (Desktop) */
    .hamburger {
      display: none;
      /* Hidden on desktop */
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: transparent;
      border: none;
      padding: 5px;
      z-index: 20;
      /* Ensure it's above other elements */
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #e5e7eb;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 780px) {

      @keyframes breathGlow {
        0% {
          box-shadow:
            0 12px 26px rgba(34, 197, 94, 0.4),
            0 0 14px rgba(190, 242, 100, 0.7);
        }

        50% {
          box-shadow:
            0 18px 40px rgba(34, 197, 94, 0.9),
            0 0 18px rgba(190, 242, 100, 1);
        }

        100% {
          box-shadow:
            0 12px 26px rgba(34, 197, 94, 0.4),
            0 0 14px rgba(190, 242, 100, 0.7);
        }
      }

      .nav {
        flex-wrap: wrap;
        row-gap: 10px;
      }

      .nav-links {
        display: none;
        /* Hide original links on mobile */
      }

      .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 80px 30px 30px;

        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;

        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 200;
        /* High z-index to cover everything */

        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        list-style: none;
      }

      .mobile-menu.active {
        transform: translateX(0);
      }

      .mobile-menu a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
      }

      .mobile-menu a:hover {
        color: #e5e7eb;
        padding-left: 10px;
        transition: all 0.2s ease;
      }

      .hamburger {
        display: flex;
        /* Show hamburger on mobile */
        z-index: 201;
        /* Above mobile menu */
        position: relative;
      }
    }



    /* HERO LAYOUT – más vertical, más aire */
    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 56px;
      align-items: center;
    }

    @media (max-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .hero-copy h1 {
      font-size: 3.4rem;
      margin: 0 0 18px;
      letter-spacing: 0.06em;
      line-height: 1.15;
    }

    @media (max-width: 640px) {
      .hero-copy h1 {
        font-size: 2.5rem;
      }
    }

    .hero-copy p {
      margin: 10px 0 26px;
      font-size: 1.02rem;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.7;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.96);
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }


    .hero-pill-launch {
      background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.24), rgba(15, 23, 42, 0.98));
      border-color: var(--accent2);
      color: #e5f9ff;
      box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35),
        0 0 28px rgba(248, 113, 113, 0.6);
      animation: pulse-pill 2.6s ease-in-out infinite;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .hero-pill-launch:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.5),
        0 0 40px rgba(248, 113, 113, 0.8),
        0 0 60px rgba(56, 189, 248, 0.6);
      color: #ffffff;
    }

    .hero-pill-launch:active {
      transform: translateY(0);
    }

    .hero-pill-launch i {
      color: var(--accent2);
    }

    @keyframes pulse-pill {
      0% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
      }

      50% {
        transform: translateY(-1px);
        box-shadow: 0 0 24px 6px rgba(248, 113, 113, 0.4);
      }

      100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
      }
    }

    .hero-pill i {
      color: #22d3ee;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 22px;
    }

    .hero-secondary-cta {
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.92rem;
    }

    .hero-secondary-cta i {
      color: #7dd3fc;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .hero-metric span {
      display: block;
    }

    .hero-metric-strong {
      font-weight: 600;
      color: #e5e7eb;
      font-size: 1.1rem;
    }

    /* TÍTULO con efecto futurista Digitalencia / Valencia */
    .brand-title {
      position: relative;
      display: inline-block;
      padding-bottom: 4px;
    }

    .brand-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 100%;
      background: linear-gradient(90deg, #22d3ee, #0f766e, #fb7185);
      transform-origin: left center;
      transform: scaleX(0);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
    }

    .brand-title.underline-active::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .brand-flip {
      display: inline-block;
      background: linear-gradient(120deg, #22d3ee, #0f766e, #fb7185);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 18px rgba(34, 197, 94, 0.6);
      transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    }

    .brand-flip.glitching {
      animation: brandGlitch 0.25s steps(2, end) infinite;
    }

    .brand-subline {
      display: block;
      font-size: 1.18rem;
      color: var(--text-muted);
      margin-top: 8px;
      max-width: 520px;
    }

    @keyframes brandGlitch {
      0% {
        text-shadow:
          2px 0 rgba(56, 189, 248, 0.9),
          -2px 0 rgba(147, 51, 234, 0.9);
        transform: translate(0, 0);
      }

      20% {
        text-shadow:
          -2px -1px rgba(56, 189, 248, 0.9),
          2px 1px rgba(236, 72, 153, 0.9);
        transform: translate(-1px, -1px);
      }

      40% {
        text-shadow:
          2px 1px rgba(56, 189, 248, 0.9),
          -2px -1px rgba(147, 51, 234, 0.9);
        transform: translate(1px, 1px);
      }

      60% {
        text-shadow:
          -2px 0 rgba(56, 189, 248, 0.9),
          2px 0 rgba(236, 72, 153, 0.9);
        transform: translate(-1px, 1px);
      }

      80% {
        text-shadow:
          2px -1px rgba(56, 189, 248, 0.9),
          -2px 1px rgba(147, 51, 234, 0.9);
        transform: translate(1px, -1px);
      }

      100% {
        text-shadow:
          2px 0 rgba(56, 189, 248, 0.9),
          -2px 0 rgba(147, 51, 234, 0.9);
        transform: translate(0, 0);
      }
    }

    /* Animación botón CTA */
    @keyframes pulseGlow {
      0% {
        box-shadow: 0 12px 26px rgba(34, 197, 94, 0.3);
      }

      50% {
        box-shadow: 0 20px 40px rgba(190, 242, 100, 0.8);
      }

      100% {
        box-shadow: 0 12px 26px rgba(34, 197, 94, 0.3);
      }
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, #22d3ee, #fbbf24);
      color: #0f172a;
      padding: 15px 38px;
      border-radius: 999px;
      font-size: 1.02rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease,
        filter 0.2s ease;
      animation: pulseGlow 20s ease-in-out infinite;
    }

    .cta-button:hover {
      transform: translateY(-2px) scale(1.03);
      filter: brightness(1.06);
    }

    /* HERO VISUAL CARD con efecto 3D interactivo */
    .hero-visual {
      position: relative;
      perspective: 1200px;
    }

    .hero-panel {
      position: relative;
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.3),
          transparent 55%),
        radial-gradient(circle at bottom right,
          rgba(34, 197, 94, 0.3),
          transparent 60%),
        rgba(15, 23, 42, 0.98);
      border-radius: 26px;
      padding: 26px 22px 22px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.95),
        0 0 26px rgba(56, 189, 248, 0.6);
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
    }

    .hero-panel-glare {
      position: absolute;
      top: -40%;
      left: -40%;
      width: 80%;
      height: 80%;
      background: radial-gradient(circle at 20% 20%,
          rgba(248, 250, 252, 0.32),
          transparent 60%);
      pointer-events: none;
      opacity: 0;
      transform: translate3d(0, 0, 60px);
      transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    }

    .hero-panel-inner {
      position: relative;
      z-index: 1;
    }

    .hero-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .hero-panel-title {
      font-size: 0.92rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-panel-title i {
      color: #7dd3fc;
    }

    .hero-status-pill {
      font-size: 0.76rem;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.16);
      color: #bbf7d0;
      border: 1px solid rgba(34, 197, 94, 0.85);
    }

    .hero-bars {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .hero-bar-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-bar {
      margin-top: 4px;
      height: 6px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      overflow: hidden;
      position: relative;
    }

    .hero-bar-fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, #0f766e, #22d3ee, #F39A1F);
      box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
    }

    .hero-badge {
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.96);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-badge i {
      font-size: 0.85rem;
      color: #7dd3fc;
    }

    /* Indicador sutil para hacer scroll */
    .scroll-hint {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      color: var(--text-muted);
      pointer-events: none;
    }

    .scroll-hint-line {
      width: 1px;
      height: 22px;
      border-radius: 999px;
      background: linear-gradient(to bottom, transparent, #7dd3fc);
      position: relative;
      overflow: hidden;
    }

    .scroll-hint-line::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -100%;
      height: 100%;
      background: linear-gradient(to bottom, #22d3ee, #0f766e);
      animation: scrollHintDrop 1.8s ease-in-out infinite;
    }

    @keyframes scrollHintDrop {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(200%);
      }
    }

    /* Hide scroll hint on mobile to avoid design issues */
    @media (max-width: 768px) {
      .scroll-hint {
        display: none;
      }
    }

    /* SECCIONES GENERALES – más altas + animación entrada */
    section {
      padding: 110px 32px;
      text-align: center;
    }

    @media (max-width: 900px) {
      section {
        padding: 90px 20px;
      }
    }

    section h2 {
      font-size: 2.3rem;
      margin-bottom: 28px;
      color: #e5e7eb;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    section p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    section.section {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s ease, transform 0.6s ease,
        box-shadow 0.6s ease;
    }

    section.section.in-view {
      opacity: 1;
      transform: translateY(0);
      box-shadow: 0 0 40px rgba(15, 23, 42, 0.8);
    }

    /* SERVICIOS – 2 columnas en desktop para más altura */
    .services-wrapper {
      max-width: 980px;
      margin: 0 auto;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px 32px;
      margin-top: 32px;
    }

    /* Microanimaciones flotantes en las tarjetas de servicios */
    @keyframes floatCard {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .service-card {
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.25),
          transparent 60%),
        rgba(15, 23, 42, 0.98);
      border-radius: 20px;
      padding: 26px 22px;
      text-align: left;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.45);
      transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
      animation: floatCard 9s ease-in-out infinite;
    }

    .service-card:nth-child(2) {
      animation-duration: 10.5s;
      animation-delay: 0.6s;
    }

    .service-card:nth-child(3) {
      animation-duration: 11.5s;
      animation-delay: 1.1s;
    }

    .service-card:nth-child(4) {
      animation-duration: 13s;
      animation-delay: 1.7s;
    }

    .service-card:hover {
      animation-play-state: paused;
      transform: translateY(-10px) translateZ(0) scale(1.02);
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.95);
      border-color: rgba(56, 189, 248, 0.9);
    }

    .service-card i {
      font-size: 2.3rem;
      color: #7dd3fc;
      margin-bottom: 14px;
      text-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
    }

    .service-card h3 {
      font-size: 1.15rem;
      margin: 0 0 10px 0;
      color: #e5e7eb;
    }

    .service-card p {
      font-size: 0.96rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.7;
    }

    /* SECTORES – Soluciones por tipo de negocio */
    .sectors-wrapper {
      max-width: 980px;
      margin: 0 auto;
    }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 32px;
    }

    .sector-card {
      background: radial-gradient(circle at top left,
          rgba(37, 99, 235, 0.32),
          transparent 60%),
        rgba(15, 23, 42, 0.98);
      border-radius: 20px;
      padding: 22px 20px;
      text-align: left;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.45);
      transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
    }

    .sector-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.96);
      border-color: rgba(59, 130, 246, 0.95);
    }

    .sector-card-icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
      text-shadow: 0 0 14px rgba(59, 130, 246, 0.9);
    }

    .sector-card h3 {
      margin: 0 0 8px 0;
      font-size: 1.05rem;
      color: #e5e7eb;
    }

    .sector-card p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

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

    /* RESPONSIVE SERVICIOS */
    @media (max-width: 800px) {
      .services {
        grid-template-columns: 1fr;
      }
    }


    /* PLANES – paquetes de servicios */
    .pricing-wrapper {
      max-width: 980px;
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      margin-top: 32px;
    }

    .pricing-card {
      position: relative;
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.28),
          transparent 60%),
        rgba(15, 23, 42, 0.98);
      border-radius: 22px;
      padding: 24px 22px;
      text-align: left;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.55);
      transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
    }

    .pricing-card.highlight {
      border-color: rgba(34, 197, 94, 0.95);
      box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.98),
        0 0 20px rgba(34, 197, 94, 0.65);
      transform: translateY(-4px);
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 24px 54px rgba(15, 23, 42, 1),
        0 0 22px rgba(56, 189, 248, 0.7);
      border-color: rgba(56, 189, 248, 0.95);
    }

    .pricing-name {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pricing-tagline {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .pricing-price {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .pricing-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 18px 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .pricing-features li {
      margin-bottom: 6px;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .pricing-features li i {
      margin-top: 3px;
      font-size: 0.8rem;
      color: #22d3ee;
    }

    .pricing-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.96);
      color: #e5e7eb;
      font-size: 0.86rem;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease, box-shadow 0.2s ease;
    }

    .pricing-cta:hover {
      background: linear-gradient(135deg, #22d3ee, #0f766e);
      border-color: transparent;
      color: #0f172a;
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.9);
    }

    .pricing-badge {
      position: absolute;
      top: 16px;
      right: 18px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.16);
      color: #bbf7d0;
      border: 1px solid rgba(34, 197, 94, 0.9);
    }

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



    /* Ajuste de espaciado entre secciones para evitar solapamientos visuales */
    #sectores {
      padding-bottom: 130px;
    }

    #planes {
      padding-top: 130px;
      padding-bottom: 120px;
    }


    /* CONTACTO */
    #contacto p {
      max-width: 740px;
      margin: 0 auto 40px;
    }

    .contact-layout {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr 1.35fr;
      gap: 36px;
      text-align: left;
      align-items: flex-start;
    }

    .contact-info h3 {
      font-size: 1.4rem;
      margin-top: 0;
    }

    .contact-info p {
      font-size: 1rem;
    }

    .contact-info small {
      display: block;
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }
    }

    .contact-form {
      background: radial-gradient(circle at top left,
          rgba(34, 197, 94, 0.22),
          transparent 55%),
        rgba(15, 23, 42, 0.98);
      padding: 24px 22px;
      border-radius: 20px;
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .form-field {
      margin-bottom: 16px;
      text-align: left;
    }

    .form-field label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: #e5e7eb;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      font-family: inherit;
      font-size: 0.96rem;
      padding: 12px 13px;
      border-radius: 12px;
      border: 1px solid #4b5563;
      outline: none;
      background: rgba(15, 23, 42, 0.9);
      color: #e5e7eb;
      transition: border 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #6b7280;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: #7dd3fc;
      box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
      background: rgba(15, 23, 42, 0.95);
    }

    .form-field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .form-submit {
      text-align: right;
      margin-top: 10px;
    }

    .form-submit button {
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, #22d3ee, #fde68a);
      color: #0f172a;
      padding: 11px 30px;
      border-radius: 999px;
      font-size: 0.98rem;
      font-weight: 600;
      transition: background 0.2s ease, transform 0.2s ease,
        box-shadow 0.2s ease, filter 0.2s ease;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .form-submit button:hover {
      transform: translateY(-2px) scale(1.03);
      filter: brightness(1.06);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7);
    }

    /* AGENDA / CALENDLY */
    #agenda p {
      max-width: 760px;
      margin: 0 auto 40px;
    }

    .agenda-wrapper {
      max-width: 980px;
      margin: 0 auto;
    }

    .agenda-card {
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.24),
          transparent 55%),
        rgba(15, 23, 42, 0.98);
      border-radius: 22px;
      padding: 26px 24px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: 0 20px 46px rgba(15, 23, 42, 0.95);
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
      gap: 26px;
      text-align: left;
      align-items: flex-start;
    }

    .agenda-info h3 {
      margin-top: 0;
      margin-bottom: 12px;
      font-size: 1.3rem;
      color: #e5e7eb;
    }

    .agenda-info p {
      margin: 0 0 10px 0;
    }

    .agenda-info ul {
      padding-left: 20px;
      margin: 12px 0 0 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .agenda-info li {
      margin-bottom: 4px;
    }

    .agenda-widget {
      min-height: 640px;
    }

    .calendly-inline-widget {
      min-width: 320px;
      height: 640px;
    }

    @media (max-width: 768px) {
      .agenda-card {
        grid-template-columns: 1fr;
        padding: 20px 16px;
      }

      .calendly-inline-widget {
        min-width: 100% !important;
      }
    }

    @media (max-width: 900px) {
      .agenda-card {
        grid-template-columns: 1fr;
      }

      .agenda-widget {
        min-height: 580px;
      }

      .calendly-inline-widget {
        height: 580px;
      }
    }

    /* QUIÉNES SOMOS */
    #quienes p {
      max-width: 760px;
      margin: 0 auto;
    }

    /* FOOTER */
    footer {
      background: #020617;
      border-top: 1px solid rgba(31, 41, 55, 1);
      color: #9ca3af;
      padding: 18px 6px 6px;
      font-size: 0.9rem;
      border-radius: 0 0 34px 34px;
    }

    .footer-inner {
      max-width: 980px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-location {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-location i {
      color: #f97316;
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .footer-copy {
      opacity: 0.85;
      text-align: center;
      order: 2;
    }

    .footer-left-group {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      margin-bottom: 5px;
      justify-content: center;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      color: #9ca3af;
      font-size: 1.2rem;
      transition: color 0.2s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-social a:hover {
      color: #22d3ee;
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .footer-inner {
        flex-direction: column;
        gap: 16px;
      }

      .footer-left-group {
        position: static;
        margin-bottom: 8px;
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* LATIDO WHATSAPP */
    @keyframes heartBeat {

      0%,
      100% {
        transform: scale(1);
        box-shadow:
          0 18px 45px rgba(0, 0, 0, 0.8),
          0 0 20px rgba(34, 197, 94, 0.9);
      }

      15% {
        transform: scale(1.06);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.9),
          0 0 26px rgba(190, 242, 100, 1);
      }

      30% {
        transform: scale(0.98);
        box-shadow:
          0 17px 40px rgba(0, 0, 0, 0.85),
          0 0 18px rgba(34, 197, 94, 0.9);
      }

      45% {
        transform: scale(1.04);
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.92),
          0 0 24px rgba(190, 242, 100, 0.95);
      }

      60% {
        transform: scale(0.99);
        box-shadow:
          0 18px 45px rgba(0, 0, 0, 0.9),
          0 0 20px rgba(34, 197, 94, 0.9);
      }
    }

    /* BOTÓN FLOTANTE WHATSAPP */


    /* AGENTE CONVERSACIONAL (CHATBOT) con caricatura animada + anillos de órbita */
    @keyframes launcherJump {

      0%,
      58%,
      100% {
        transform: translateY(0) scale(1);
      }

      64% {
        transform: translateY(-18px) scale(1.06);
      }

      72% {
        transform: translateY(4px) scale(0.98);
      }

      80% {
        transform: translateY(-10px) scale(1.03);
      }

      88% {
        transform: translateY(0) scale(1);
      }

      88% {
        transform: translateY(0) scale(1);
      }
    }

    .btn-heartbeat {
      animation: heartBeat 2s ease-in-out infinite !important;
    }

    .chat-launcher {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 80px;
      height: 80px;
      border-radius: 999px;
      background: radial-gradient(circle at 20% 0,
          rgba(56, 189, 248, 0.9),
          transparent 60%),
        #020617;
      border: 1px solid rgba(56, 189, 248, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.95),
        0 0 18px rgba(56, 189, 248, 0.9);
      z-index: 13;
      /* Lower than menu (15) */
      animation: neonPulseSoft 20s ease-in-out infinite,
        launcherJump 10s ease-in-out infinite;
    }

    .chat-launcher::before,
    .chat-launcher::after {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 999px;
      border: 1px dashed rgba(56, 189, 248, 0.65);
      opacity: 0.85;
      pointer-events: none;
    }

    .chat-launcher::before {
      animation: orbitRing 10s linear infinite;
    }

    .chat-launcher::after {
      inset: -14px;
      border-style: solid;
      border-color: rgba(34, 197, 94, 0.7);
      border-width: 1px;
      opacity: 0.4;
      animation: orbitRing 16s linear infinite reverse;
    }

    @keyframes orbitRing {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .chat-launcher-inner {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #22d3ee, #0f766e);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 14px rgba(56, 189, 248, 0.9);
    }

    .chat-callout {
      position: absolute;
      right: 78px;
      bottom: 42px;
      padding: 8px 14px;
      border-radius: 18px;
      background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.9), rgba(15, 23, 42, 0.98));
      border: 1px solid rgba(148, 163, 184, 0.9);
      color: #e5e7eb;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      white-space: nowrap;
      box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.9),
        0 0 16px rgba(56, 189, 248, 0.9);
      transform-origin: right bottom;
      animation: calloutPop 8s ease-in-out infinite;
      pointer-events: none;
    }

    .chat-callout::after {
      content: "";
      position: absolute;
      right: -5px;
      bottom: 8px;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.9), rgba(15, 23, 42, 0.98));
      border-right: 1px solid rgba(148, 163, 184, 0.9);
      border-bottom: 1px solid rgba(148, 163, 184, 0.9);
      transform: rotate(45deg);
    }

    @keyframes calloutPop {

      0%,
      58% {
        opacity: 0;
        transform: translateY(8px) scale(0.85);
      }

      64% {
        opacity: 1;
        transform: translateY(-2px) scale(1.05);
      }

      72% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      84% {
        opacity: 0;
        transform: translateY(-6px) scale(0.9);
      }

      100% {
        opacity: 0;
        transform: translateY(8px) scale(0.85);
      }
    }

    @media (max-width: 480px) {
      .chat-callout {
        display: none;
      }
    }

    .bot-face {
      position: relative;
      width: 36px;
      height: 28px;
      border-radius: 12px;
      background: #0b1120;
      border: 2px solid rgba(56, 189, 248, 0.9);
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
      overflow: hidden;
      animation: botAttention 2.6s ease-in-out infinite;
    }

    .bot-eye {
      position: absolute;
      top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #e5e7eb;
      box-shadow: 0 0 6px rgba(248, 250, 252, 0.9);
      transform-origin: center center;
      animation: botWink 6s ease-in-out infinite;
    }

    .bot-eye.left {
      left: 6px;
    }

    .bot-eye.right {
      right: 6px;
      animation-delay: 2s;
    }

    .bot-mouth {
      position: absolute;
      bottom: 5px;
      left: 50%;
      width: 14px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #22d3ee, #0f766e);
      transform: translateX(-50%);
      animation: mouthCall 1.8s ease-in-out infinite;
    }

    @keyframes mouthCall {

      0%,
      20%,
      100% {
        transform: translateX(-50%) scaleY(1);
        height: 3px;
      }

      30% {
        transform: translateX(-50%) scaleY(0.4);
        height: 1px;
      }

      45% {
        transform: translateX(-50%) scaleY(1.4);
        height: 5px;
      }

      60% {
        transform: translateX(-50%) scaleY(0.5);
        height: 1px;
      }

      80% {
        transform: translateX(-50%) scaleY(1);
        height: 3px;
      }
    }

    @keyframes botAttention {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      30% {
        transform: translateY(-2px) rotate(-2deg);
      }

      60% {
        transform: translateY(-4px) rotate(2deg);
      }

      80% {
        transform: translateY(0) rotate(0deg);
      }
    }

    @keyframes botWink {

      0%,
      10%,
      30%,
      50%,
      70%,
      90%,
      100% {
        transform: scaleY(1) translateX(0);
      }

      14%,
      16% {
        transform: scaleY(0.1) translateX(0);
      }

      34%,
      36% {
        transform: scaleY(0.1) translateX(0);
      }

      74%,
      76% {
        transform: scaleY(0.1) translateX(0);
      }
    }

    .chat-window {
      position: fixed;
      bottom: 45px;
      right: 100px;
      width: 362px;
      max-width: calc(100% - 40px);
      height: 391px;
      background: radial-gradient(circle at top left,
          rgba(15, 23, 42, 0.98),
          rgba(15, 23, 42, 0.98));
      border-radius: 20px;
      box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.95),
        0 0 22px rgba(56, 189, 248, 0.85);
      border: 1px solid rgba(56, 189, 248, 0.7);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      z-index: 60;
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .chat-window.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .chat-header {
      padding: 10px 14px;
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.3),
          transparent 60%),
        #020617;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(30, 64, 175, 0.8);
    }

    .chat-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chat-avatar {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #22d3ee, #0f766e);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0b1120;
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
    }

    .chat-title {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .chat-subtitle {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .chat-close {
      border: none;
      background: transparent;
      color: #9ca3af;
      cursor: pointer;
      padding: 0;
    }

    .chat-close:hover {
      color: #e5e7eb;
    }

    .chat-messages {
      flex: 1;
      padding: 10px 12px;
      overflow-y: auto;
      font-size: 0.8rem;
    }

    .chat-message {
      margin-bottom: 8px;
      display: flex;
    }

    .chat-message.bot {
      justify-content: flex-start;
    }

    .chat-message.user {
      justify-content: flex-end;
    }

    .chat-bubble {
      max-width: 80%;
      padding: 7px 10px;
      border-radius: 12px;
      line-height: 1.4;
    }

    .chat-message.bot .chat-bubble {
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(56, 189, 248, 0.6);
    }

    .chat-message.user .chat-bubble {
      background: #22d3ee;
      color: #022c22;
      border-radius: 12px 12px 2px 12px;
    }

    .chat-input {
      padding: 8px;
      border-top: 1px solid rgba(30, 64, 175, 0.8);
      background: rgba(15, 23, 42, 0.98);
      display: flex;
      gap: 6px;
    }

    .chat-input input {
      flex: 1;
      border-radius: 999px;
      border: 1px solid #4b5563;
      background: #020617;
      color: #e5e7eb;
      font-size: 0.8rem;
      padding: 7px 10px;
      outline: none;
    }

    .chat-input input::placeholder {
      color: #6b7280;
    }

    .chat-send-btn {
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #22d3ee, #0f766e);
      color: #020617;
      padding: 0 12px;
      font-size: 0.8rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chat-send-btn i {
      font-size: 0.9rem;
    }

    .chat-hints {
      margin-top: 4px;
      font-size: 0.7rem;
      color: var(--text-muted);
    }


    .typing-indicator {
      display: inline-flex;
      align-items: center;
      gap: 3px;
    }

    .typing-dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: #e5e7eb;
      opacity: 0.5;
      animation: typingBlink 1s infinite ease-in-out;
    }

    .typing-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes typingBlink {

      0%,
      100% {
        opacity: 0.2;
        transform: translateY(0);
      }

      50% {
        opacity: 1;
        transform: translateY(-2px);
      }
    }

    @media (max-width: 480px) {
      .chat-window {
        bottom: 90px;
        right: 10px;
        width: calc(100% - 20px);
        height: 480px;
      }

      .chat-launcher {
        right: 10px;
      }
    }

    /* LANZAMIENTO HOSTING – sección especial */
    #lanzamiento-hosting {
      margin-top: 60px;
    }

    .launch-header {
      max-width: 720px;
      margin: 0 auto 32px auto;
      text-align: left;
    }

    .launch-header h2 {
      font-size: 2.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .launch-grid {
      align-items: stretch;
    }

    .launch-list {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
    }

    .launch-list li {
      font-size: 0.96rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 6px;
      position: relative;
      padding-left: 18px;
    }

    .launch-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent2);
    }

    .launch-actions {
      margin-top: 22px;
    }


    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 6px 0 20px;
    }

    .hero-tag-pill {
      padding: 5px 11px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.78rem;
      color: var(--text-muted);
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.08),
          rgba(15, 23, 42, 0.95));
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    @media (max-width: 640px) {
      .hero-tag-pill {
        font-size: 0.75rem;
      }
    }


    /* Destacar mucho más el lanzamiento de enero 2026 en el hero */
    .hero-pill-launch {
      background: radial-gradient(circle at top left,
          rgba(56, 189, 248, 0.6),
          rgba(15, 23, 42, 0.98));
      border-color: var(--accent2);
      color: #fefce8;
      box-shadow:
        0 0 0 1px rgba(248, 250, 252, 0.7),
        0 0 40px rgba(243, 154, 31, 0.95),
        0 0 110px rgba(56, 189, 248, 0.9);
      animation: pulse-pill-strong 3.4s ease-in-out infinite;
      position: relative;
      z-index: 3;
    }

    @keyframes pulse-pill-strong {
      0% {
        transform: translateY(0);
        box-shadow:
          0 0 0 1px rgba(248, 250, 252, 0.5),
          0 0 14px rgba(243, 154, 31, 0.7),
          0 0 28px rgba(56, 189, 248, 0.5);
      }

      50% {
        transform: translateY(-1px);
        box-shadow:
          0 0 0 1px rgba(248, 250, 252, 0.9),
          0 0 60px rgba(243, 154, 31, 1),
          0 0 150px rgba(56, 189, 248, 1);
      }

      100% {
        transform: translateY(0);
        box-shadow:
          0 0 0 1px rgba(248, 250, 252, 0.5),
          0 0 14px rgba(243, 154, 31, 0.7),
          0 0 28px rgba(56, 189, 248, 0.5);
      }
    }

    /* Sticky Navbar Active State */
    .nav.sticky-active {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1080px;
      z-index: 999;
      margin-bottom: 0;
    }

    /* Form Status Messages */
    .form-status {
      margin: 16px 0;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      display: none;
      animation: slideIn 0.3s ease;
    }

    .form-status.show {
      display: block;
    }

    .form-status.success {
      background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.2), rgba(15, 23, 42, 0.95));
      border: 1px solid rgba(34, 197, 94, 0.6);
      color: #86efac;
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    .form-status.error {
      background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.2), rgba(15, 23, 42, 0.95));
      border: 1px solid rgba(239, 68, 68, 0.6);
      color: #fca5a5;
      box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }

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

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

    /* Button loading state */
    .form-submit button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .form-submit button.loading::after {
      content: "";
      display: inline-block;
      width: 14px;
      height: 14px;
      margin-left: 8px;
      border: 2px solid rgba(15, 23, 42, 0.3);
      border-top-color: #0f172a;
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }