
    :root {
      --negro: #06070d;
      --panel: #0d101c;
      --panel2: #111527;
      --linea: rgba(255, 255, 255, .08);
      --tinta: #f2f4fa;
      --suave: #9aa3b8;
      --amarillo: #2ca8e0;
      --amarillo2: #8fd6f5;
      --verde: #23c55e;
      --rojo: #ff5d5d;
      --display: "Archivo Black", "Space Grotesk", sans-serif;
      --cuerpo: "Space Grotesk", system-ui, sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--negro);
      color: var(--tinta);
      font-family: var(--cuerpo);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; }
    ::selection { background: var(--amarillo); color: #111; }

    /* ---------- nav ---------- */
    .hnav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px clamp(16px, 4vw, 48px);
      background: rgba(6, 7, 13, .55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--linea);
    }
    .hnav .chip-logo {
      background: #fff;
      border-radius: 9px;
      padding: 5px 9px;
      display: inline-flex;
      line-height: 0;
    }
    .hnav .chip-logo img { height: 26px; }
    .hnav .enlaces { display: flex; align-items: center; gap: 18px; font-size: 14px; }
    .hnav .enlaces a { text-decoration: none; color: var(--suave); transition: color .2s; }
    .hnav .enlaces a:hover { color: var(--tinta); }
    .hnav .cta {
      background: var(--amarillo);
      color: #131313 !important;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 99px;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 0 0 rgba(44, 168, 224, 0);
    }
    .hnav .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(44, 168, 224, .35); }

    /* ---------- hero ---------- */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px clamp(16px, 5vw, 64px) 80px;
      isolation: isolate;
    }
    .hero::before {   /* malla técnica */
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        repeating-linear-gradient(0deg, transparent 0 79px, rgba(255,255,255,.035) 79px 80px),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.035) 79px 80px);
      mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
    }
    .glow {
      position: absolute;
      z-index: -3;
      border-radius: 50%;
      filter: blur(90px);
      opacity: .5;
      animation: flotar 14s ease-in-out infinite alternate;
    }
    .glow.a { width: 44vw; height: 44vw; background: rgba(44, 168, 224, .16); top: -10%; right: -8%; }
    .glow.b { width: 36vw; height: 36vw; background: rgba(38, 66, 255, .18); bottom: -12%; left: -10%; animation-delay: -7s; }
    @keyframes flotar {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(-6%, 6%) scale(1.15); }
    }
    .marca-agua {
      position: absolute;
      z-index: -1;
      right: -1%;
      bottom: 4%;
      font-family: var(--display);
      font-size: clamp(120px, 24vw, 380px);
      line-height: .8;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255, 255, 255, .06);
      user-select: none;
      pointer-events: none;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--amarillo);
      font-weight: 700;
    }
    .eyebrow::before {
      content: "";
      width: 34px; height: 2px;
      background: var(--amarillo);
      display: inline-block;
    }
    .hero h1 {
      font-family: var(--display);
      font-size: clamp(46px, 9vw, 124px);
      line-height: .95;
      letter-spacing: -.01em;
      margin: 22px 0 26px;
      text-transform: uppercase;
    }
    .hero h1 .grad {
      background: linear-gradient(92deg, var(--amarillo) 10%, var(--amarillo2) 55%, #e4f6ff 90%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero .lead {
      max-width: 640px;
      font-size: clamp(16px, 2vw, 20px);
      color: var(--suave);
    }
    .hero .lead b { color: var(--tinta); }
    .hero .botones { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
    .boton-h {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 28px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s, background .2s;
    }
    .boton-h.solido { background: var(--amarillo); color: #131313; }
    .boton-h.solido:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(44, 168, 224, .35); }
    .boton-h.fantasma { border: 1px solid var(--linea); color: var(--tinta); background: rgba(255,255,255,.03); }
    .boton-h.fantasma:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
    .hero .flecha-abajo {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      color: var(--suave);
      font-size: 22px;
      animation: rebota 1.8s ease-in-out infinite;
      text-decoration: none;
    }
    @keyframes rebota {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 9px); }
    }

    /* entrada escalonada del hero */
    .sube { opacity: 0; transform: translateY(26px); animation: sube .9s cubic-bezier(.2,.7,.2,1) forwards; }
    .sube.d1 { animation-delay: .05s; } .sube.d2 { animation-delay: .18s; }
    .sube.d3 { animation-delay: .32s; } .sube.d4 { animation-delay: .48s; }
    @keyframes sube { to { opacity: 1; transform: none; } }

    /* ---------- cinta marquee ---------- */
    .cinta {
      border-block: 1px solid var(--linea);
      background: rgba(44, 168, 224, .04);
      overflow: hidden;
      white-space: nowrap;
      padding: 13px 0;
    }
    .cinta .pista { display: inline-block; animation: correr 26s linear infinite; }
    .cinta span {
      font-family: var(--display);
      font-size: 15px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--amarillo);
      margin: 0 26px;
    }
    .cinta span:nth-child(even) { color: rgba(255,255,255,.35); }
    @keyframes correr { to { transform: translateX(-50%); } }

    /* ---------- secciones ---------- */
    section.bloque { padding: clamp(64px, 9vw, 120px) clamp(16px, 5vw, 64px); max-width: 1240px; margin: 0 auto; }
    .titulo-seccion {
      font-family: var(--display);
      font-size: clamp(28px, 4.6vw, 52px);
      line-height: 1.05;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .titulo-seccion .amar { color: var(--amarillo); }
    .sub-seccion { color: var(--suave); max-width: 640px; font-size: 17px; }

    /* reveal on scroll */
    .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
    .reveal.on { opacity: 1; transform: none; }

    /* ---------- historia + montacargas ---------- */
    .dos {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: clamp(24px, 4vw, 52px);
      align-items: center;
    }
    /* pedido del 30 ago: en esta sección el título va más discreto,
       la foto más grande y el texto de lectura más grande */
    #por-que .titulo-seccion { font-size: clamp(24px, 3.4vw, 40px); }
    #por-que .sub-seccion { font-size: 18.5px; max-width: none; }
    #por-que .punto b { font-size: 17px; }
    #por-que .punto p { font-size: 15.5px; }
    .marco-svg {
      background:
        radial-gradient(60% 60% at 60% 40%, rgba(44, 168, 224, .12), transparent 70%),
        linear-gradient(180deg, var(--panel2), var(--panel));
      border: 1px solid var(--linea);
      border-radius: 26px;
      padding: 14px;
      position: relative;
      overflow: hidden;
    }
    .marco-svg img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 18px;
      border: 1px solid var(--linea);
    }

    /* galería del equipo en acción */
    .galeria {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 36px;
    }
    .gal-item {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--linea);
      background: var(--panel);
      aspect-ratio: 4 / 3;
    }
    .gal-item.ancho { grid-column: span 2; aspect-ratio: auto; }
    .gal-item.alto { grid-row: span 2; aspect-ratio: auto; }
    .gal-item img, .gal-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s cubic-bezier(.2,.7,.2,1);
    }
    /* los videos NUNCA se recortan ni se estiran: se encajan completos */
    .gal-item video { object-fit: contain; background: #000; }
    .gal-item:hover img { transform: scale(1.05); }

    /* muro de clientes que ya rentaron el equipo */
    .clientes {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 36px;
    }
    .cliente {
      border: 1px solid var(--linea);
      border-radius: 16px;
      background: var(--panel);
      min-height: 92px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 18px 12px;
      font-family: var(--display);
      font-size: 15px;
      letter-spacing: .08em;
      color: #8b93a7;
      transition: color .25s, border-color .25s, transform .25s;
    }
    .cliente:hover {
      color: var(--tinta);
      border-color: rgba(44, 168, 224, .5);
      transform: translateY(-3px);
    }
    .cliente img {
      max-width: 78%;
      max-height: 52px;
      object-fit: contain;
      filter: grayscale(1) opacity(.75);
      transition: filter .25s;
    }
    .cliente.logo { background: #f4f6f9; }
    .cliente.logo:hover img { filter: none; }

    /* tarifas de renta */
    .tarifas {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 34px;
    }
    .tarifa {
      border: 1px solid var(--linea);
      border-radius: 20px;
      background: linear-gradient(180deg, var(--panel2), var(--panel));
      padding: 26px 22px;
      text-align: center;
      transition: transform .25s, border-color .25s;
    }
    .tarifa:hover { transform: translateY(-4px); border-color: rgba(44, 168, 224, .45); }
    .tarifa small {
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 11.5px;
      color: var(--suave);
      display: block;
    }
    .tarifa b {
      display: block;
      font-family: var(--display);
      font-size: clamp(28px, 3.4vw, 40px);
      color: var(--tinta);
      margin: 10px 0 4px;
    }
    .tarifa span { color: var(--suave); font-size: 12.5px; }
    .tarifa.destacada { border-color: rgba(44, 168, 224, .55); }
    .tarifa.destacada b { color: var(--amarillo); }
    @media (max-width: 980px) { .tarifas { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 980px) {
      .galeria { grid-template-columns: 1fr 1fr; }
      .clientes { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .galeria { grid-template-columns: 1fr; }
      .gal-item.ancho, .gal-item.alto { grid-column: auto; grid-row: auto; }
      .gal-item.alto { aspect-ratio: 3 / 4; }
      .gal-item.video-v { aspect-ratio: 480 / 848; }
    }
    .marco-svg .sello {
      position: absolute;
      top: 18px; right: 18px;
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #131313;
      background: var(--amarillo);
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 99px;
    }
    .puntos { margin-top: 26px; display: grid; gap: 14px; }
    .punto {
      display: flex;
      gap: 14px;
      background: rgba(255,255,255,.025);
      border: 1px solid var(--linea);
      border-radius: 16px;
      padding: 16px 18px;
      transition: border-color .25s, background .25s;
    }
    .punto:hover { border-color: rgba(44, 168, 224, .4); background: rgba(44, 168, 224, .05); }
    .punto .ico {
      flex: none;
      width: 40px; height: 40px;
      border-radius: 12px;
      background: rgba(44, 168, 224, .14);
      color: var(--amarillo);
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 700;
      font-family: var(--display);
    }
    .punto b { display: block; }
    .punto p { color: var(--suave); font-size: 14.5px; }

    /* ---------- specs ---------- */
    .malla-specs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 34px;
    }
    .spec {
      border: 1px solid var(--linea);
      border-radius: 18px;
      padding: 22px;
      background: var(--panel);
    }
    .spec small { color: var(--suave); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
    .spec b { display: block; font-size: 19px; margin-top: 7px; line-height: 1.3; }
    /* ---------- pasos ---------- */
    .pasos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
    .paso {
      position: relative;
      border: 1px solid var(--linea);
      border-radius: 20px;
      padding: 30px 24px 26px;
      background: linear-gradient(180deg, var(--panel2), var(--panel));
      overflow: hidden;
    }
    .paso .num {
      font-family: var(--display);
      font-size: 88px;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(44, 168, 224, .5);
      position: absolute;
      top: -12px; right: 10px;
    }
    .paso b { font-size: 18px; display: block; margin-bottom: 8px; }
    .paso p { color: var(--suave); font-size: 14.5px; max-width: 90%; }

    /* ---------- agenda + cotizador ---------- */
    .reserva { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; margin-top: 40px; }
    .vidrio {
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--linea);
      border-radius: 24px;
      padding: 26px;
      backdrop-filter: blur(8px);
    }
    .vidrio h3 {
      font-family: var(--display);
      text-transform: uppercase;
      font-size: 17px;
      letter-spacing: .04em;
      margin-bottom: 6px;
    }
    .vidrio .mini { color: var(--suave); font-size: 14px; }

    /* calendario (pintado por js/hoist.js) */
    .calendario { margin-top: 16px; }
    .cal-cabecera { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .cal-cabecera b { text-transform: capitalize; font-size: 16px; }
    .cal-cabecera button {
      width: 38px; height: 38px;
      border-radius: 12px;
      border: 1px solid var(--linea);
      background: rgba(255,255,255,.04);
      color: var(--tinta);
      font-size: 19px;
      cursor: pointer;
      transition: background .2s;
    }
    .cal-cabecera button:hover:not(:disabled) { background: rgba(44, 168, 224, .18); }
    .cal-cabecera button:disabled { opacity: .3; cursor: default; }
    .cal-malla { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
    .cal-dia-nombre { text-align: center; font-size: 11px; color: var(--suave); padding: 4px 0; letter-spacing: .1em; }
    .cal-dia {
      aspect-ratio: 1;
      border-radius: 12px;
      border: 1px solid transparent;
      background: rgba(255,255,255,.045);
      color: var(--tinta);
      font: inherit;
      font-size: 14px;
      cursor: pointer;
      transition: background .15s, transform .15s, border-color .15s;
    }
    .cal-dia:hover:not(:disabled) { background: rgba(44, 168, 224, .22); transform: scale(1.06); }
    .cal-dia:disabled { opacity: .28; cursor: default; }
    .cal-dia.hoy { border-color: rgba(44, 168, 224, .6); }
    .cal-dia.ocupado, .cal-dia.ocupado:disabled {
      background: rgba(255, 93, 93, .16);
      color: var(--rojo);
      text-decoration: line-through;
      opacity: 1;
      cursor: not-allowed;
    }
    .cal-dia.rango { background: rgba(44, 168, 224, .22); }
    .cal-dia.elegido {
      background: var(--amarillo);
      color: #131313;
      font-weight: 700;
      border-color: var(--amarillo);
    }
    .cal-leyenda { margin-top: 14px; font-size: 13.5px; color: var(--suave); min-height: 1.4em; }
    .cal-claves { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; font-size: 12.5px; color: var(--suave); }
    .cal-claves span { display: inline-flex; align-items: center; gap: 6px; }
    .cal-clave { width: 13px; height: 13px; border-radius: 4px; display: inline-block; border: 1px solid var(--linea); }
    .cal-clave.libre { background: rgba(255,255,255,.08); }
    .cal-clave.ocupado { background: rgba(255, 93, 93, .3); }
    .cal-clave.elegido { background: var(--amarillo); }

    /* cotizador */
    .campo-h { margin: 16px 0; }
    .campo-h label { display: block; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--suave); margin-bottom: 8px; }
    .campo-h select {
      width: 100%;
      padding: 13px 14px;
      font: inherit;
      font-size: 15px;
      color: var(--tinta);
      background: var(--panel2);
      border: 1px solid var(--linea);
      border-radius: 14px;
      outline: none;
    }
    .campo-h select:focus { border-color: var(--amarillo); }
    .desglose { margin-top: 6px; }
    .desglose .fila {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 2px;
      border-bottom: 1px dashed rgba(255,255,255,.1);
      font-size: 14.5px;
      color: var(--suave);
    }
    .desglose .fila span:last-child { color: var(--tinta); text-align: right; }
    .desglose .fila.total {
      border-bottom: 0;
      font-size: 17px;
      font-weight: 700;
      color: var(--tinta);
    }
    .desglose .fila.total span:last-child { color: var(--amarillo); }
    .desglose .pendiente { color: var(--amarillo); font-size: 13.5px; padding: 10px 2px; }
    .avisos-h { margin: 16px 0 4px; padding-left: 16px; color: var(--suave); font-size: 13px; display: grid; gap: 5px; }
    .btn-wa {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      margin-top: 18px;
      padding: 17px 20px;
      border-radius: 16px;
      background: var(--verde);
      color: #06240f;
      font-weight: 700;
      font-size: 16.5px;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 0 0 rgba(35, 197, 94, 0);
    }
    .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(35, 197, 94, .35); }
    .nota-h { margin-top: 12px; font-size: 12.5px; color: var(--suave); text-align: center; }

    /* ---------- cierre + footer ---------- */
    .cierre {
      text-align: center;
      padding: clamp(70px, 10vw, 130px) 20px;
      background:
        radial-gradient(50% 80% at 50% 100%, rgba(44, 168, 224, .12), transparent 70%);
    }
    .cierre h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(26px, 5vw, 54px); line-height: 1.05; }
    .cierre p { color: var(--suave); margin: 16px auto 30px; max-width: 520px; }
    .pie-h {
      border-top: 1px solid var(--linea);
      padding: 26px clamp(16px, 5vw, 48px);
      display: flex;
      flex-wrap: wrap;
      gap: 12px 26px;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--suave);
    }
    .pie-h a { color: var(--suave); }
    .pie-h a:hover { color: var(--tinta); }

    /* ---------- responsivo ---------- */
    @media (max-width: 980px) {
      .dos { grid-template-columns: 1fr; }
      .malla-specs { grid-template-columns: repeat(2, 1fr); }
      .pasos { grid-template-columns: 1fr; }
      .reserva { grid-template-columns: 1fr; }
      .marca-agua { display: none; }
    }
    @media (max-width: 560px) {
      .malla-specs { grid-template-columns: 1fr; }
      .hnav .enlaces .oculta-mvl { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal { opacity: 1; transform: none; }
      .sube { opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
    }
  
    /* ---------- subpáginas del hoist ---------- */
    .sub-cabecera { max-width: 1240px; margin: 0 auto; padding: 150px clamp(16px, 5vw, 64px) 10px; }
    .sub-cabecera h1 { font-family: var(--display); font-size: clamp(36px, 6vw, 72px); line-height: .95; text-transform: uppercase; margin: 14px 0 16px; }
    .hnav .actual { color: var(--tinta) !important; border-bottom: 2px solid var(--amarillo); padding-bottom: 3px; }
    .malla-detalle { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
    .detalle { border: 1px solid var(--linea); border-radius: 18px; background: var(--panel); padding: 24px; }
    .detalle h3 { font-family: var(--display); text-transform: uppercase; font-size: 16px; letter-spacing: .04em; margin-bottom: 10px; color: var(--amarillo); }
    .detalle ul { list-style: none; display: grid; gap: 7px; color: var(--suave); font-size: 14.5px; }
    .detalle li { padding-left: 18px; position: relative; }
    .detalle li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 2px; background: var(--amarillo); }
    .condiciones { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    @media (max-width: 940px) { .malla-detalle, .condiciones { grid-template-columns: 1fr; } }
