/* ── HERO ─────────────────────────────────────────── */
  .hero {
    position: relative;
    width: 100%;
    height: 100%;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    height: 100lvh;
    min-height: -webkit-fill-available;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
  }

  @media (max-width: 767px) {
    /* Mismo patrón que el panel del menú (fixed + compositing) para que iOS calcule el viewport al cargar */
    .hero {
      position: fixed;
      inset: 0;
      width: 100%;
      z-index: 0;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      height: 100dvh;
      height: 100lvh;
      height: calc(var(--vh, 1vh) * 100);
      height: -webkit-fill-available;
      min-height: -webkit-fill-available;
      max-height: none;
      background: #000;
    }
  }

  .hero__video-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px))
      max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  }

  .hero__cta {
    font-family: 'Google Sans', sans-serif;
    pointer-events: auto;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.25rem 3rem;
    background: transparent;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCtaReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }

  .hero__cta:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border-color: #fff;
  }

  @media (max-width: 767px) {
    .hero__cta {
      font-size: 0.78rem;
      padding: 1rem 2.25rem;
      letter-spacing: 0.25em;
      min-height: 48px;
    }
  }

  @keyframes heroCtaReveal {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
