
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange:        #ff5500;
      --orange-dim:    rgba(255,85,0,0.08);
      --orange-border: rgba(255,85,0,0.22);
      --bg:    #07090d;
      --card:  #0e1520;
      --border:#1a2434;
      --text:  #d0dce8;
      --muted: #4a5a6a;
      --dim:   #2a3a4a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      min-height: 100vh;
    }

  
    .bg-grid {
      position: fixed; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none; z-index: 0;
    }
    .bg-glow {
      position: fixed; inset: 0;
      background:
        radial-gradient(ellipse 60% 55% at 78% 45%, rgba(255,80,0,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 35% 40% at 15% 75%, rgba(255,80,0,0.04) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    .bg-scan {
      position: fixed; inset: 0;
      background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0,0,0,0.13) 3px, rgba(0,0,0,0.13) 4px
      );
      pointer-events: none; z-index: 0; opacity: 0.35;
    }

   
    #barra-navegacion {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 50px;
      background: rgba(7,9,13,0.96);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      z-index: 200;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .lado-izquierdo {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .icono-logo {
      display: flex;
      align-items: center;
    }

    .icono-logo svg rect,
    .icono-logo svg polygon { fill: white; }
    .icono-logo svg circle  { fill: var(--bg); }

    .boton-traducir {
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 20px;
      padding: 3px 12px;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .boton-traducir:hover { border-color: var(--orange); }
    .boton-traducir a {
      color: var(--orange);
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .enlaces-nav {
      display: flex;
      align-items: center;
      gap: 2.2rem;
    }
    .enlaces-nav a {
      color: var(--muted);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: color 0.2s;
    }
    .enlaces-nav a:hover { color: #fff; }
    .enlaces-nav a.activo { color: var(--orange); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav-status {
      display: flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--dim);
    }
    .nav-status-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #22c55e;
      animation: parpadeo 2s ease-in-out infinite;
    }
    .rec-badge {
      display: flex; align-items: center; gap: 5px;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      color: #ff3333;
      border: 1px solid rgba(255,51,51,0.25);
      padding: 3px 8px;
    }
    .rec-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #ff3333;
      animation: parpadeo 1s ease-in-out infinite;
    }

    @keyframes parpadeo {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }


    #seccion-hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      z-index: 1;
    }

    .imagen-fondo {
      position: absolute;
      top: 0; right: 0;
      width: 62%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      z-index: 1;
      opacity: 0.75;
    }

    .fondo-oscuro {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(to right,
          #07090d 28%,
          rgba(7,9,13,0.88) 50%,
          rgba(7,9,13,0.25) 75%,
          transparent 100%
        ),
        linear-gradient(to top,
          rgba(7,9,13,0.6) 0%,
          transparent 40%
        );
    }


    .fondo-oscuro::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0; left: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--orange), transparent);
      opacity: 0.5;
    }

    .contenido-hero {
      position: relative;
      z-index: 10;
      padding: 0 2.5rem;
      margin-top: 50px;
      max-width: 560px;
    }

  
    .etiqueta-estado {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--orange-border);
      background: var(--orange-dim);
      padding: 4px 14px;
      color: #ff7a33;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      margin-bottom: 1.6rem;
      animation: fadeUp 0.5s 0.1s cubic-bezier(0.22,1,0.36,1) both;
    }
    .punto-activo {
      width: 7px; height: 7px; border-radius: 50%;
      background: #22c55e;
      animation: parpadeo 1.5s infinite;
      flex-shrink: 0;
    }

  
    .marca-principal {
      margin-bottom: 12px;
      line-height: 1;
      animation: fadeUp 0.6s 0.2s cubic-bezier(0.22,1,0.36,1) both;
    }
    .texto-zip {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(72px, 10vw, 100px);
      font-weight: 800;
      background-color: var(--orange);
      color: white;
      padding: 0 10px;
      display: inline-block;
      line-height: 1;
      letter-spacing: 1px;
    }
    .texto-cam {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(72px, 10vw, 100px);
      font-weight: 800;
      color: var(--orange);
      margin-left: 8px;
      line-height: 1;
      letter-spacing: 1px;
    }

    .lema-principal {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1rem;
      animation: fadeUp 0.6s 0.3s cubic-bezier(0.22,1,0.36,1) both;
    }

    .descripcion-hero {
      font-size: 14px;
      color: #8899aa;
      line-height: 1.75;
      margin-bottom: 1.4rem;
      max-width: 440px;
      animation: fadeUp 0.6s 0.35s cubic-bezier(0.22,1,0.36,1) both;
    }

    .separador-linea {
      width: 52px; height: 2px;
      background: var(--orange);
      margin-bottom: 1.6rem;
      animation: fadeUp 0.5s 0.4s cubic-bezier(0.22,1,0.36,1) both;
    }


    .estadisticas-rapidas {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 2rem;
      animation: fadeUp 0.6s 0.45s cubic-bezier(0.22,1,0.36,1) both;
    }
    .dato-estadistica {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .numero-stat {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.5px;
    }
    .etiqueta-stat {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .divisor-stat {
      width: 1px; height: 36px;
      background: rgba(255,255,255,0.12);
    }

    /* Buttons */
    .grupo-botones {
      display: flex;
      gap: 14px;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.6s 0.5s cubic-bezier(0.22,1,0.36,1) both;
    }
    .boton {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 13px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      cursor: pointer;
      min-width: 150px;
      line-height: 1.25;
      transition: all 0.2s;
      border: 2px solid transparent;
      border-radius: 0;
    }
    .boton:active { transform: scale(0.98); }
    .icono-boton {
      font-size: 10px;
      flex-shrink: 0;
    }
    .boton-primario {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }
    .boton-primario:hover { background: #e04900; border-color: #e04900; }

    .boton-borde {
      background: transparent;
      color: #fff;
      border-color: rgba(255,255,255,0.25);
    }
    .boton-borde:hover {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(255,85,0,0.04);
    }

    .texto-aviso {
      font-size: 11px;
      color: rgba(200,212,232,0.35);
      border-left: 2px solid var(--orange);
      padding-left: 10px;
      animation: fadeUp 0.5s 0.55s cubic-bezier(0.22,1,0.36,1) both;
    }

   
    .panel-lateral {
      position: absolute;
      right: 2rem;
      bottom: 5rem;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
      animation: fadeUp 0.7s 0.6s cubic-bezier(0.22,1,0.36,1) both;
    }
    .tarjeta-senal,
    .tarjeta-camara {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(7,9,13,0.8);
      border: 1px solid var(--border);
      padding: 8px 14px;
      backdrop-filter: blur(6px);
    }
    .indicador-senal {
      display: flex;
      align-items: flex-end;
      gap: 3px;
    }
    .barra-senal {
      display: block;
      width: 4px;
      background: var(--orange);
      border-radius: 1px;
    }
    .b1 { height: 6px; }
    .b2 { height: 10px; }
    .b3 { height: 14px; }
    .b4 { height: 18px; opacity: 0.3; }
    .texto-senal {
      font-size: 11px;
      font-weight: 700;
      color: #8899aa;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
    .punto-grabacion {
      width: 7px; height: 7px; border-radius: 50%;
      background: #ff3333;
      animation: parpadeo 1s infinite;
    }
    .texto-grabacion {
      font-size: 12px;
      font-weight: 700;
      color: #ff3333;
      letter-spacing: 2.5px;
    }

    
    .hero-bottom-bar {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 10;
      border-top: 1px solid var(--border);
      background: rgba(7,9,13,0.85);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      padding: 10px 2.5rem;
      gap: 2rem;
    }
    .hero-bottom-item {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--dim);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero-bottom-item .dot-green {
      width: 5px; height: 5px; border-radius: 50%;
      background: #22c55e; flex-shrink: 0;
    }
    .hero-bottom-sep { width: 1px; height: 14px; background: var(--border); }

   
    .section {
      position: relative; z-index: 1;
      padding: 80px 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 9px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(28px, 4vw, 48px); font-weight: 800;
      color: #fff; letter-spacing: 2px; text-transform: uppercase;
      line-height: 1; margin-bottom: 0.8rem;
    }
    .section-title span { color: var(--orange); }
    .section-sub {
      font-size: 13px; color: var(--muted); max-width: 480px;
      line-height: 1.75; margin-bottom: 3rem;
    }

    
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .feat-card {
      background: var(--card);
      padding: 2.2rem 2rem;
      position: relative;
      transition: background 0.3s;
    }
    .feat-card:hover { background: #121c2c; }
    .feat-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--border); transition: background 0.3s;
    }
    .feat-card:hover::before { background: var(--orange); }
    .feat-bg-num {
      position: absolute; top: 1rem; right: 1.4rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 60px; font-weight: 800;
      color: rgba(255,85,0,0.06); line-height: 1;
      pointer-events: none; transition: color 0.3s;
    }
    .feat-card:hover .feat-bg-num { color: rgba(255,85,0,0.13); }
    .feat-icon {
      width: 42px; height: 42px;
      background: var(--orange-dim); border: 1px solid var(--orange-border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .feat-icon svg { width: 20px; height: 20px; }
    .feat-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px; font-weight: 800; color: #fff;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .feat-text { font-size: 12px; color: var(--muted); line-height: 1.7; }

    .stats-band {
      position: relative; z-index: 1;
      background: var(--card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      padding: 0 2.5rem;
    }
    .stat-item {
      padding: 2rem 2rem;
      border-right: 1px solid var(--border);
      display: flex; flex-direction: column;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 44px; font-weight: 800; color: var(--orange);
      letter-spacing: 1px; line-height: 1;
    }
    .stat-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); margin-top: 4px;
    }

   
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .step-card {
      background: var(--card);
      padding: 2.2rem 1.8rem;
      position: relative;
      display: flex; flex-direction: column;
      transition: background 0.3s;
    }
    .step-card:hover { background: #121c2c; }
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1.2rem;
    }
    .step-icon {
      width: 40px; height: 40px;
      background: var(--orange-dim); border: 1px solid var(--orange-border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .step-icon svg { width: 18px; height: 18px; }
    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px; font-weight: 800; color: #fff;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .step-text { font-size: 12px; color: var(--muted); line-height: 1.7; flex: 1; }
    .step-arrow {
      position: absolute; right: -1px; top: 50%;
      transform: translateY(-50%);
      width: 18px; height: 18px;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-right: 1px solid var(--border);
      transform: translateY(-50%) rotate(45deg);
      z-index: 2;
    }
    .step-card:last-child .step-arrow { display: none; }

    
    .cta-wrap {
      background: var(--card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .cta-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 60px 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .cta-label {
      font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem;
    }
    .cta-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(28px, 4vw, 48px); font-weight: 800;
      color: #fff; letter-spacing: 2px; text-transform: uppercase;
      line-height: 1;
    }
    .cta-title span { color: var(--orange); }
    .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-p {
      background: var(--orange); border: none; color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 14px 28px; cursor: pointer;
      display: flex; align-items: center; gap: 10px;
      transition: background 0.2s; text-decoration: none; border-radius: 0;
    }
    .btn-p:hover { background: #e04900; }
    .btn-p-play { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent #fff; flex-shrink: 0; }
    .btn-o {
      background: transparent; border: 1px solid var(--border); color: var(--muted);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 14px 28px; cursor: pointer;
      display: flex; align-items: center; gap: 10px;
      transition: all 0.2s; text-decoration: none; border-radius: 0;
    }
    .btn-o:hover { border-color: var(--orange); color: #fff; }


    #pie-pagina {
      position: relative; z-index: 1;
      background: #060a10;
      border-top: 1px solid var(--border);
      padding: 3.5rem 2.5rem 0;
    }
    .contenido-footer {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px; margin: 0 auto;
      padding-bottom: 2.5rem;
    }
    .logo-footer {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 1rem;
    }
    .logo-footer svg rect,
    .logo-footer svg polygon { fill: white; }
    .logo-footer svg circle { fill: #060a10; }
    .nombre-logo-footer {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px;
    }
    .zip-footer { color: var(--orange); }
    .descripcion-footer {
      font-size: 13px; color: var(--muted); line-height: 1.7;
      margin-bottom: 0.8rem; max-width: 260px;
    }
    .titulo-columna {
      font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1.2rem;
      display: block;
    }
    .lista-footer { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .lista-footer li a {
      color: var(--muted); text-decoration: none;
      font-size: 13px; transition: color 0.2s;
    }
    .lista-footer li a:hover { color: #fff; }
    .dato-contacto {
      font-size: 13px; color: var(--muted); margin-bottom: 8px;
      display: flex; align-items: center; gap: 8px;
    }
    .texto-pendiente {
      font-size: 11px; color: rgba(200,212,232,0.22);
      font-style: italic; margin-top: 8px;
    }
    .linea-footer {
      max-width: 1200px; margin: 0 auto;
      height: 1px; background: var(--border);
    }
    .barra-inferior-footer {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.2rem 0 1.5rem;
    }
    .copyright-footer { font-size: 11px; color: var(--dim); letter-spacing: 0.5px; }
    .version-footer { font-size: 11px; color: var(--orange); opacity: 0.5; letter-spacing: 1px; }

   
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate {
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                  transform 0.65s cubic-bezier(0.22,1,0.36,1);
    }
    .animate.visible { opacity: 1; transform: translateY(0); }
    .d1{transition-delay:.1s} .d2{transition-delay:.2s}
    .d3{transition-delay:.3s} .d4{transition-delay:.4s}


    @media (max-width: 900px) {
      .imagen-fondo { width: 100%; opacity: 0.3; }
      .contenido-hero { max-width: 100%; }
      .contenido-footer { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .enlaces-nav { display: none; }
      .hero-bottom-bar { display: none; }
      .panel-lateral { bottom: 2rem; }
      .contenido-footer { grid-template-columns: 1fr; }
      .grupo-botones { flex-direction: column; }
    }
  