.nv-cinta {
  --nv-cinta-h: 36px;
  position: sticky;
  top: 0;
  z-index: 1040;
  height: var(--nv-cinta-h);
  overflow: hidden;
  background: #20b1aa;
  color: #fff;
  isolation: isolate;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.nv-cinta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 62%);
  pointer-events: none;
  z-index: 2;
}

.nv-cinta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: nv-cinta-shine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.nv-cinta__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: nv-cinta-run 32s linear infinite;
}

.nv-cinta:hover .nv-cinta__track {
  animation-play-state: paused;
}

.nv-cinta__group {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.nv-cinta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 6px 0 18px;
  color: #fff;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nv-cinta a:hover {
  color: #f3fffd;
  transform: translateY(-1px);
}

.nv-cinta a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.95;
}

.nv-cinta a::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.nv-cinta .nv-cinta--cta {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  height: 24px;
  padding: 0 12px;
  margin: 0 6px 0 12px;
}

.nv-cinta .nv-cinta--cta::after {
  display: none;
}

.nv-cinta .nv-cinta--cta:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: none;
}

@keyframes nv-cinta-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes nv-cinta-shine {
  0% { transform: translateX(0); opacity: 0; }
  18% { opacity: 1; }
  55% { transform: translateX(280%); opacity: 0.85; }
  100% { transform: translateX(340%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .nv-cinta::after {
    animation: none;
    display: none;
  }

  .nv-cinta__track {
    animation: none;
  }

  .nv-cinta {
    overflow-x: auto;
  }
}

/* El menú queda debajo de la cinta y se pega con ella */
.ftco-navbar-light,
.ftco-navbar-light.scrolled,
.ftco-navbar-light.scrolled.awake,
.ftco-navbar-light.scrolled.sleep {
  top: 36px !important;
}

html {
  scroll-padding-top: 169px;
}
