.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  margin-top: 50px;
  margin-bottom: 50px;
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(
    (10s / var(--quantity)) * (var(--position) - 1) - 10s
  ) !important;
}

.faixa2 .icon1 img {
  width: 20px;
  height: 20px;
  color: white;
}

.slider .list .item img {
  width: 100%;
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}
.slider .item:hover {
  filter: grayscale(0);
}
.slider[reverse="true"] .item {
  animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}

.checkout {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  --border-width: 1px;
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  padding: var(--border-width);
  overflow: hidden;
  max-width: 70%;
  gap: 3%;
}

.content {
  position: relative;
  border-radius: inherit;
  height: auto;
  padding: 40px 10px 50px;
  box-shadow: inset 0 0 0 1px rgb(50, 50, 50);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content h1 {
  background-image: linear-gradient(130deg, #024aff, #79dcff);
  width: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5vw;
  padding-bottom: 20px;
}

.content h2 {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 3vw;
}

.content li {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.4vw;
}

.content li ul {
  margin-bottom: 20px;
}

.content p {
  color: rgb(170, 170, 170);
  max-width: 60%;
}

#preço {
  color: #024aff;
  font-size: 1.4rem;
  padding-bottom: 20px;
}

#preço s {
  color: #024aff;
}

#preçoGrande {
  font-size: 5.6vw;
}

.darMargin {
  margin: 10px 0px;
}

.border {
  position: absolute;
  inset: 0;
  padding: var(--border-width);
  -webkit-mask: linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.border::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 200%;
  min-height: 200%;
  aspect-ratio: 1/1;
  background: conic-gradient(from 0deg, #115dff, #6bcbff, black);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
