/* components.css — shared across all three landings; edit here only if the change applies to every site */

.sticky-button.show {
  opacity: 1;
  pointer-events: auto;
}

.icon-left {
  width: 3rem !important;
  height: auto;
  vertical-align: middle;
}

.marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.375rem 1rem;
  background: var(--nl-bg-light);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.2rem;
  color: var(--nl-dark);
  box-sizing: border-box;
}

.marquee__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  --duration: 15s;
  animation: marquee-linear var(--duration) linear infinite;
}

.marquee__text {
  display: inline-block;
  padding-right: 3rem;
  line-height: 1.4;
}

.marquee__text a {
  text-decoration: underline;
  color: var(--nl-dark);
  text-decoration-thickness: 1px;
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

.marquee:focus-within .marquee__inner {
  animation-play-state: paused;
}

.nl-benefits {
  display: grid;
  grid-template-columns: repeat(1,minmax(0,1fr));
  gap: 1rem;
}

.nl-benefit strong {
  display: block;
  margin-bottom: .25rem;
}

.nl-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nl-card img {
  width: 12rem;
  filter: drop-shadow(-1px 0px 3px #222222bd);
  align-self: center;
}

.nl-card-text {
  margin: 0;
}

.nl-benefit h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  line-height: 1.2;
}

.nl-benefit p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.35;
}

.nl-heading-block .nl-stitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width:37.5rem) {
  .nl-benefit h3 {
    font-size: .95rem;
  }

  .nl-benefit p {
    font-size: .9rem;
  }

}
@media (max-width:60.25rem) {
  .icon-left {
    width: 2.5rem !important;
    height: auto;
  }

  .nl-benefit h3 {
    font-size: .98rem;
  }

  .nl-benefit p {
    font-size: .92rem;
  }

}
@media (prefers-reduced-motion:reduce) {
  .marquee__inner {
    animation: none;
  }

}
@media(min-width:80rem) {
  .nl-benefits {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

}
@media (prefers-color-scheme:dark) {
  .nl-cta--dark {
    color: var(--nl-text-light);
  }

  .nl-card-text {
    color: #d8d8d8;
  }

}
@media screen and (max-width:72rem) {
  .servicios-fila {
    flex-direction: column !important;
  }

}
