@font-face {
  font-family: "myFirstFont";
  src: url("../fonts/JosefinSans-Italic-VariableFont_wght.ttf");
  font-family: "ARCADE CLASSIC";
  src: url("../fonts/ARCADECLASSIC.TTF");
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "myFirstFont";
  font-style: italic;
  font-weight: 300;
}

body {
  background-image: url(../backgrounds/FondoPblur.jpg); /* Fondo principal */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
}

/* Efecto blur */
#container {
  height: 525px;
  width: 950px;
  border-radius: 6px;
  box-shadow: 0 10px 30px #000;
  border: 1px solid #ffffff40;
  text-align: center;
  font-family: "ARCADE CLASSIC", "Arial";
}

.blur {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(243, 243, 243, 0.2);
}

/* Sistema de cartas */

.conteinerCards {
  position: relative;
  width: 100%;
  /* min-height:100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  /* padding-bottom: 40px; */
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  filter: blur(4px);
  background: #91aaa7;
  /* color: #000000; */
  /* background:#fff; */
  border-radius: 10px;
}

.swiper-slide-active {
  filter: blur(0px);
  /* background:#fff; */
  background: #d3d9dd;
}

.comodinBox {
  position: relative;
  width: 100%;
  padding: 18%;
  padding-top: 120px; /* Tamaño de la carta */
  color: #999;
}

.comodinBox .imageComodin {
  position: absolute;
  top: 20px;
  right: 30px;
  height: 70px;
  opacity: 0.6;
}

.comodinBox .details {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.comodinBox .details .imgBox {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 10px;
}

.comodinBox .details .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comodinBox .details h3 {
  font-family: myFirstFont;
  font-size: 20px;
  font-weight: 700px;
  letter-spacing: 1px;
  color: #2196f3;
  line-height: 1.1em;
}

.comodinBox .content p{
  color: #252525;
}

.comodinBox .details h3 span {
  font-family: myFirstFont;
  font-weight: 700px;
  font-size: 16px;
  color: #666;
}

.swiper-container-3d .swiper-slide-shawdow-left,
.swiper-container-3d .swiper-slide-shawdow-right {
  background-image: none;
}

.contenedorTextoIndicativo {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
}

.imgcont {
  width: 60px;
}

.textocont {
  font-family: "ARCADE CLASSIC", "Arial";
  color: #22d3cb;
  font-size: 30px;
  letter-spacing: 5px;
  font-style: normal;
  margin-top: 15px;
}

/* Esta es la animacion del boton de volver atras*/

.btn-neon {
  margin: 0px 80px;
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  color: rgb(197, 193, 193);
  letter-spacing: 4px;
  font-size: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
  font-family: "ARCADE CLASSIC", "Arial";
}

.btn-neon:hover {
  background: #f6ed9f;
  box-shadow: 0 0 10px #f6ed9f, 0 0 40px #f6ed9f, 0 0 80px #f6ed9f;
  transition-delay: 0.4s;
}

.btn-neon span {
  position: absolute;
  display: block;
}

.span {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #f6ed9f);
}

.btn-neon:hover .span {
  right: 100%;
  transition: 1s;
}
