.picto-neonflex-personalizado-marquee {
  position: relative;
  z-index: 6;
  display: flex;
  width: 100vw;
  min-height: 46px;
  align-items: center;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .18), transparent 18%, transparent 82%, rgba(8, 8, 8, .18)),
    #e91e63;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(233, 30, 99, .22);
}

.picto-neonflex-personalizado-marquee::before,
.picto-neonflex-personalizado-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 92px;
  height: 100%;
  pointer-events: none;
}

.picto-neonflex-personalizado-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #e91e63 0%, rgba(233, 30, 99, 0) 100%);
}

.picto-neonflex-personalizado-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #e91e63 0%, rgba(233, 30, 99, 0) 100%);
}

.picto-neonflex-personalizado-marquee .picto-store-marquee__track {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  will-change: transform;
  animation: pictoNeonflexMarqueeLeftToRight 18s linear infinite;
}

.picto-neonflex-personalizado-marquee .picto-store-marquee__track span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: "Kenyan Coffee", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(8, 8, 8, .16);
}

.picto-neonflex-personalizado-marquee .picto-store-marquee__track span::after {
  content: "\2022";
  display: inline-block;
  margin-left: 64px;
  color: rgba(255, 255, 255, .92);
  font-size: .9em;
  line-height: 1;
}

.picto-neonflex-personalizado-marquee:hover .picto-store-marquee__track,
.picto-neonflex-personalizado-marquee:focus-visible .picto-store-marquee__track {
  animation-play-state: paused;
}

.picto-neonflex-personalizado-marquee:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}

@keyframes pictoNeonflexMarqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

body.page .picto-neonflex-personalizado-cta {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(42px, 7vw, 86px) 0;
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  background: #080808;
}

.picto-neonflex-personalizado-cta__inner {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  padding: clamp(26px, 4.5vw, 54px);
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 16%, rgba(233, 30, 99, .30), transparent 30%),
    radial-gradient(circle at 82% 80%, rgba(233, 30, 99, .18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    #080808;
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.picto-neonflex-personalizado-cta__inner::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto auto;
  z-index: -1;
  width: clamp(220px, 30vw, 440px);
  aspect-ratio: 1;
  border: 1.5px solid rgba(233, 30, 99, .34);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 34px rgba(233, 30, 99, .20));
}

.picto-neonflex-personalizado-cta__copy span {
  display: inline-flex;
  color: #e91e63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.picto-neonflex-personalizado-cta__copy h2 {
  max-width: 680px;
  margin: 12px 0 0;
  color: #fff;
  font-family: "Kenyan Coffee", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(50px, 7vw, 102px);
  font-style: italic;
  font-weight: 900;
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 18px 58px rgba(0, 0, 0, .44),
    0 0 42px rgba(233, 30, 99, .18);
}

.picto-neonflex-personalizado-cta__copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.8;
}

.picto-neonflex-personalizado-cta__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 1px solid #e91e63;
  border-radius: 8px;
  padding: 13px 20px;
  color: #fff;
  background: #e91e63;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(233, 30, 99, .28);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.picto-neonflex-personalizado-cta__button:hover,
.picto-neonflex-personalizado-cta__button:focus-visible {
  color: #fff;
  border-color: #fff;
  background: #111;
  outline: 0;
  transform: translateY(-2px);
}

.picto-neonflex-personalizado-cta__visual {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
}

.picto-neonflex-personalizado-cta__tube {
  color: #ff216d;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
  text-align: center;
  text-shadow:
    0 0 4px #ff216d,
    0 0 14px #ff216d,
    0 0 34px rgba(255, 33, 109, .58);
  transform: rotate(-4deg);
}

.picto-neonflex-personalizado-cta__rail {
  position: absolute;
  right: 6%;
  bottom: 22%;
  left: 10%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

@media (max-width: 860px) {
  .picto-neonflex-personalizado-cta__inner {
    grid-template-columns: 1fr;
  }

  .picto-neonflex-personalizado-cta__visual {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  body.page .picto-neonflex-personalizado-cta {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 34px 0;
  }

  .picto-neonflex-personalizado-cta__inner {
    width: min(100% - 24px, 1180px);
  }

  .picto-neonflex-personalizado-cta__inner {
    padding: 24px 18px;
  }
}
