@keyframes encoger {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes encoger-rotar {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(0.8) rotate(70deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.fondo-animado {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image: url("../../img/recursos/bg-fondo-section-probando.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}
@media (max-width: 1024px) {
  .fondo-animado {
    background-image: url("../../img/recursos/bg-fondo-section-probando-mobile.webp");
  }
}

.btn-circulo {
  padding: 8px 20px;
  background-color: #E22A82;
  border-radius: 20px;
  color: #fff;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 27px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1;
}
.btn-circulo::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #F0CB01;
  transform: scale(0);
  transition: transform 0.5s;
  z-index: -1;
}
.btn-circulo:hover {
  box-shadow: 0 5px 20px 0 rgba(213, 181, 3, 0.5);
  color: #552D7A;
}
.btn-circulo:hover::before {
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .btn-circulo {
    font-size: 15px;
    line-height: 20px;
    padding: 8px 20px;
  }
}

.volver-inicio {
  color: #E22A82;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.card-post .card-post__link {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card-post .card-post__link .card-post__imagen {
  max-width: 350px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.card-post .card-post__link .card-post__imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s;
}
.card-post .card-post__link .card-post__contenido {
  padding: 50px 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 25px 80px 0 rgba(0, 0, 0, 0.05);
  margin-top: -30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.card-post .card-post__link .card-post__contenido .card-post__titulo {
  color: var(--card-post-color, #552D7A);
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-post .card-post__link .card-post__contenido .card-post__contenido-texto {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  text-align: center;
}
.card-post .card-post__link .card-post__contenido .btn-circulo {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
  opacity: 0;
  color: #552D7A;
}
@media (max-width: 1024px) {
  .card-post .card-post__link .card-post__contenido .btn-circulo {
    color: #fff;
  }
}
@media (max-width: 1024px) {
  .card-post .card-post__link .card-post__contenido .btn-circulo {
    transform: translate(-50%, 45px);
    opacity: 1;
  }
}
.card-post .card-post__link:hover .card-post__imagen img, .card-post .card-post__link:active .card-post__imagen img {
  transform: scale(1.1);
}
.card-post .card-post__link:hover .card-post__contenido .btn-circulo, .card-post .card-post__link:active .card-post__contenido .btn-circulo {
  transform: translate(-50%, 45px);
  opacity: 1;
  box-shadow: 0 5px 20px 0 rgba(213, 181, 3, 0.5);
  color: #552D7A !important;
}
.card-post .card-post__link:hover .card-post__contenido .btn-circulo::before, .card-post .card-post__link:active .card-post__contenido .btn-circulo::before {
  transform: scale(1.2);
}/*# sourceMappingURL=index.css.map */