/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --primary: #4f005c;
  --primary-light: #c072cd;
  --secondary: #1a64c5;
}

.fw-800 {
  font-weight: 800;
}

.text-shadow-lg {
  text-shadow: 3px 5px 9px black;
}
.text-primary-2 {
  color: var(--primary);
}
.bg-primary-2 {
  background-color: var(--primary);
}

.bg-secondary-2 {
  background-color: var(--secondary);
}

.border-primary-light {
  border-color: var(--primary-light) !important;
}

.payment-method:hover {
  background-color: #f4e7f6;
  box-shadow: 1px 1px 3px #a0a0a0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  background-image: linear-gradient(#000000d6, rgba(0, 0, 0, 0.2)), url(../img/bg3.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.text-content {
  background-image: linear-gradient(#000000d6, rgba(0, 0, 0, 0.2)), url(../img/bg2.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* TARJETAS */
.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content {
  margin: 0 40px;
  /* overflow: hidden; */
  border-radius: 25px;
}
.card {
  border-radius: 15px;
  border: 1px solid #ffffff22;
  background-color: #282c34;
  background: linear-gradient(0deg, rgba(40, 44, 52, 1) 0%, rgba(17, 0, 32, 0.5) 100%);
  box-shadow: 0 7px 20px 5px #00000088;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  overflow: hidden;
  transition: 0.5s all;
  ::before {
    position: fixed;
    content: "";
    box-shadow: 0 0 100px 40px #ffffff08;
    top: -10%;
    left: -100%;
    transform: rotate(-45deg);
    height: 60rem;
    transition: 0.7s all;
  }
  &:hover {
    border: 1px solid #ffffff44;
    box-shadow: 0 7px 50px 10px #000000aa;
    transform: scale(1.015);
    filter: brightness(1.3);
    ::before {
      filter: brightness(0.5);
      top: -100%;
      left: 200%;
    }
  }
}

hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid #88888855;
  margin-top: 0;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
}

.image-content {
  position: relative;
  row-gap: 5px;
}
.card-image {
  position: relative;
  /* height: 120px; */
  width: 100%;
  border-radius: 10px;
  /* background-image: url(../img/avatar1.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat; */
}

.tokenInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  .price {
    display: flex;
    align-items: center;
    color: #ee83e5;
    font-weight: 700;
  }
}

.name {
  font-size: 1.75rem;
  font-weight: 500;
  color: #333;
}
.description {
  font-size: 14px;
  color: #a89ec9;
  text-align: center;
}

.swiper-navBtn {
  color: #6e93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #4070f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }
  /* .card :hover remove styles */

  .card {
    ::before {
      display: none;
    }
  }
}
/* FIN TARJETAS */
