/* ═══════════════════════════════════════════════════════════════
   HIERRO FACH UY — hero.css
   Requiere: header.css (variables :root compartidas)
═══════════════════════════════════════════════════════════════ */

/* ── Utilidad accesible ─────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN RAÍZ
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  min-height: 100lvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Sube el hero para que quede detrás del header sticky transparente */
.hero--overlap {
  margin-top: calc(-1 * var(--hdr-bar-h) - 2px);
}

/* ═══════════════════════════════════════════════════════════════
   FONDO — imagen + overlay + grain
═══════════════════════════════════════════════════════════════ */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0d1a14;
  background-image: url("../../images/hero/hero-bg.webp");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  animation: hero-zoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

/* Video de fondo — solo mobile */
.hero__bg-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fondo imagen zona inferior — solo mobile, anclado a 100lvh para evitar jump del browser bar */
.hero__bg-lower {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100lvh;  /* large viewport height: fijo sin importar si la barra del nav está visible */
  top: var(--hero-bg-lower-top, 100lvh);
  z-index: 0;
  background-image: url("../../images/hero/celular.webp");
  background-size: cover;
  background-position: center center;
  background-color: #0d1a14;
}

.hero__bg-lower::after {
  content: '';
  position: absolute;
  inset: 0;
  /* oscuro arriba (blend con video) → imagen visible al centro → oscuro al fondo */
  background: linear-gradient(
    to bottom,
    rgba(6, 16, 11, 0.82) 0%,
    rgba(6, 16, 11, 0.28) 40%,
    rgba(6, 16, 11, 0.50) 100%
  );
}

@media (max-width: 860px) {
  .hero__bg {
    /* Mantenemos la imagen como fondo en mobile también:
       sirve de fallback inmediato mientras el video carga
       (o si nunca carga por red lenta / data saver). */
    animation: none;
    bottom: auto;
    height: 100lvh; /* large viewport: cubre siempre aunque la barra del nav desaparezca */
  }
  .hero__bg-video {
    display: block;
  }
  .hero__bg-lower {
    display: block;
  }
}

@keyframes hero-zoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.06); }
}

/* Overlay: oscurece la foto para legibilidad del texto */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(8, 22, 16, 0.82) 0%,
      rgba(8, 22, 16, 0.60) 55%,
      rgba(8, 22, 16, 0.35) 100%
    );
}

/* Grain sutil — da sensación de material, industrial */
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

/* Línea de acento verde izquierda (detalle visual, desktop) */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--clr-brand);
  border-radius: 0 2px 2px 0;
  z-index: 2;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT INTERIOR
═══════════════════════════════════════════════════════════════ */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 24px 28vh;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   COLUMNA IZQUIERDA
═══════════════════════════════════════════════════════════════ */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: hero-fade-up 0.75s cubic-bezier(.22,1,.36,1) both;
}

/* Wrapper de la primera pantalla mobile. En desktop/tablet es
   transparente al layout: sus hijos participan del flex de
   .hero__content como si el wrapper no existiera. */
.hero__main { display: contents; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Pills / tags ───────────────────────────────────────────── */
.hero__tags {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}

/* separador punto entre items */
.hero__tags li + li::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  margin: 0 10px;
  flex-shrink: 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.hero__tag svg {
  color: var(--clr-brand);
  flex-shrink: 0;
}

/* móvil: dos líneas limpias, sin separadores huérfanos */
@media (max-width: 540px) {
  .hero__tags {
    flex-wrap: wrap;
    gap: 6px 16px;
  }
  .hero__tags li + li::before {
    display: none;
  }
  .hero__tag-word2 { display: none; }
}

/* ── H1 ─────────────────────────────────────────────────────── */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  text-wrap: balance;
}

.hero__title-accent {
  font-style: italic;
  color: #ffffff;
}

/* ── Lead ───────────────────────────────────────────────────── */
.hero__lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 520px;
}

/* ── CTAs ───────────────────────────────────────────────────── */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

/* Primario — WhatsApp */
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  background: #25d366;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid #25d366;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hero__cta-primary:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40);
}
.hero__cta-primary:active { transform: translateY(0); box-shadow: none; }

/* Secundario — Ver proyectos */
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.30);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.hero__cta-secondary:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.hero__cta-secondary:active { transform: translateY(0); }


/* ── Stats ──────────────────────────────────────────────────── */
.hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px 0 0;
  flex-shrink: 0;
}

.hero__stat:first-child { padding-left: 0; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero__stat-sup {
  font-size: .6em;
  vertical-align: super;
  color: var(--clr-brand);
}

.hero__stat-label {
  font-family: var(--font-body);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  margin: 0 20px 0 0;
  flex-shrink: 0;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   COLUMNA DERECHA — aside
═══════════════════════════════════════════════════════════════ */
.hero__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: hero-fade-up 0.75s 0.2s cubic-bezier(.22,1,.36,1) both;
}

/* ── Tarjeta testimonio (estilo Google Review) ──────────────── */
.hero__review {
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(60, 64, 67, 0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  color: #3c4043;
  box-shadow: 0 1px 2px rgba(60,64,67,.08), 0 6px 20px rgba(0,0,0,.18);
}

.hero__review::before { display: none; }

/* HEADER row: avatar + meta + Google G */
.hero__review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--clr-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  border: none;
}

.hero__review-avatar[data-fallback]::after {
  content: attr(data-fallback);
}
.hero__review-avatar[data-fallback] img { display: none; }

.hero__review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__review-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__review-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  letter-spacing: 0.1px;
}

.hero__review-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #5f6368;
}

/* RATING row: estrellas + tiempo relativo */
.hero__review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__review-stars {
  display: flex;
  gap: 2px;
}

.hero__review-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: #5f6368;
}

/* Quote — estilo Google: normal, no itálica, sin comillas */
.hero__review-quote {
  margin: 0;
}
.hero__review-quote p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
  color: #3c4043;
  margin: 0;
}

/* ── Badge flotante "30 días" ───────────────────────────────── */
.hero__badge-float {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;

  /* Pulso sutil de entrada */
  animation: badge-pop 0.5s 0.55s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1);    }
}

/* Variante inline: oculta en desktop, se muestra en mobile (≤860px).
   Declarada DESPUÉS de .hero__badge-float para ganar el cascade. */
.hero__badge-float--inline { display: none; }

.hero__badge-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--clr-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.hero__badge-float-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__badge-float-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero__badge-float-text span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL INDICATOR
═══════════════════════════════════════════════════════════════ */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: hero-fade-up 1s 0.9s cubic-bezier(.22,1,.36,1) both;
}

.hero__scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0)
  );
  border-radius: 2px;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 0.2; transform: scaleY(0.6); }
}

.hero__scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Focus visible accesible */
.hero__cta-primary:focus-visible,
.hero__cta-secondary:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ≤ 1100px — aside más compacto */
@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
  .hero__stat-num { font-size: clamp(20px, 2.8vw, 30px); }
}

/* ≤ 860px — una sola columna */
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero__review {
    flex: 1;
    min-width: 260px;
  }

  .hero__badge-float:not(.hero__badge-float--inline) { display: none; }
  .hero__badge-float--inline {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .hero::before { display: none; }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .hero { background-color: #0d1a14; }

  /* Scrim uniforme — sin fundido a negro al final */
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(8, 22, 16, 0.58) 0%,
      rgba(8, 22, 16, 0.48) 100%
    );
  }

  .hero__inner { padding: 0; }

  .hero__grid { gap: 0; }

  /* Primera pantalla = SOLO el mensaje (chips, H1, lead, CTAs, badge):
     .hero__main mide exactamente 100lvh — igual que el video de fondo.
     Las stats son hermanas del wrapper, así que fluyen naturalmente
     DESPUÉS del pliegue, sobre hero__bg-lower (que arranca en 100lvh). */
  .hero__content {
    padding: 0 20px;
  }

  .hero__main {
    display: flex;
    flex-direction: column;
    min-height: 100lvh;
    box-sizing: border-box;
    padding-top: 140px;
  }

  /* Stats — sin fondo */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
    background: none;
    margin: 0 -20px;
    padding: 36px 20px 48px;
    border-top: none;
  }


  /* Números con sombra para legibilidad sobre foto */
  .hero__stat-num {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  }

  .hero__aside {
    flex-direction: column;
    background: transparent;
    padding: 4px 20px 48px;
  }

  /* Testimonio: la card Google blanca se mantiene en mobile,
     solo ajustamos sombra para que se integre mejor con el fondo oscuro */
  .hero__review {
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
  }

  .hero__stat,
  .hero__stat:first-child {
    padding: 0 16px 0 0;
  }

  .hero__stat-sep { display: none; }

  .hero__stat-num { font-size: clamp(28px, 8vw, 36px); }

  .hero__stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.04em;
  }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__cta-primary,
  .hero__cta-secondary { width: 100%; justify-content: center; }

  .hero__scroll { display: none; }
}

/* ≤ 400px */
@media (max-width: 400px) {
  .hero__title { font-size: 34px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE ≤ 600px — estilo "etiqueta industrial"
   Chips blancos angulados, H1 en mayúsculas con barra de acento,
   CTAs rectangulares full-width. Solo presentación (CSS), el
   HTML/contenido no cambia.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── Pills: etiquetas blancas con leve corte diagonal ── */
  .hero__tags {
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero__tags li + li::before { display: none; } /* sin separadores punto */
  .hero__tag {
    background: #ffffff;
    color: #10251c;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    filter: drop-shadow(2px 2px 0 rgba(6, 16, 11, 0.45));
  }
  .hero__tag svg { display: none; }

  /* ── H1: mayúsculas ── */
  .hero__title {
    text-transform: uppercase;
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.1;
    letter-spacing: 0;
  }
  .hero__title-accent { font-style: normal; } /* bloque uniforme como la referencia */

  /* ── Lead: texto más claro sobre el fondo oscuro ── */
  .hero__lead {
    color: rgba(255, 255, 255, 0.90);
    font-size: 17px;
    line-height: 1.6;
  }

  /* ── Ritmo vertical: dos grupos claros ──────────────────────
     Mensaje  (chips → H1 → lead)  con aire entre sí
     Acción   (CTAs → badge)       agrupados
     y un respiro grande entre ambos grupos.               ── */
  .hero__content { gap: 0; }
  .hero__title  { margin-top: 20px; }
  .hero__lead   { margin-top: 20px; }
  .hero__actions {
    margin-top: 34px;
    gap: 12px;
  }
  .hero__badge-float--inline { margin-top: 14px; }

  /* ── CTA primario: rectangular, verde WhatsApp, protagonista ── */
  .hero__cta-primary {
    background: #25d366;
    border-color: #25d366;
    border-radius: 10px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.06em;
    min-height: 56px;
    padding: 0 24px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30), 0 2px 6px rgba(0, 0, 0, 0.18);
    animation: hero-wsp-pulse 3s ease-in-out 1.2s infinite;
  }
  .hero__cta-primary:active,
  .hero__cta-secondary:active {
    transform: scale(0.98);
  }

  /* CTA secundario ("Ver proyectos"): mantiene el estilo original
     (fondo transparente + borde claro). Solo se iguala la forma
     al primario para que la pila se vea consistente. */
  .hero__cta-secondary {
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    min-height: 56px;
    padding: 0 22px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-color: rgba(255, 255, 255, 0.38);
  }

  /* Pulso sutil del CTA de WhatsApp — llama la mirada sin molestar */
  @keyframes hero-wsp-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30), 0 2px 6px rgba(0, 0, 0, 0.18); }
    50%      { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.52), 0 2px 6px rgba(0, 0, 0, 0.18); }
  }

  /* ── "30 días entrega promedio": microcopy del CTA ──────────
     Patrón de conversión: línea de garantía debajo de los botones
     (como el "sin tarjeta de crédito" bajo un signup). Texto plano,
     centrado y silencioso — sin caja, sin borde, sin fondo. */
  .hero__badge-float--inline {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 14px;
  }
  .hero__badge-float--inline .hero__badge-float-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: #3ddc97;
  }
  .hero__badge-float--inline .hero__badge-float-icon svg {
    width: 14px;
    height: 14px;
    display: block;
  }
  .hero__badge-float--inline .hero__badge-float-text {
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
  }
  .hero__badge-float--inline .hero__badge-float-text strong {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
  }
  .hero__badge-float--inline .hero__badge-float-text span {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
  }
}

/* Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .hero__content,
  .hero__aside,
  .hero__badge-float { animation: none; }
  .hero__scroll-line { animation: none; }
  .hero__cta-primary { animation: none; }
}
