@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;
}

.gracias-404-reclamo {
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gracias-404-reclamo .span-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: encoger-rotar 5s ease-in-out infinite;
}
.gracias-404-reclamo picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gracias-404-reclamo picture::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: multiply;
}
.gracias-404-reclamo picture img {
  width: 100%;
  height: 100%;
}
.gracias-404-reclamo .contenedor {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gracias-404-reclamo .contenedor .contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gracias-404-reclamo .contenedor .contenido .contenido-interno {
  position: relative;
  display: flex;
}
.gracias-404-reclamo .contenedor .contenido .contenido-interno .span-2 {
  position: absolute;
  bottom: 60%;
  right: 90%;
  z-index: -1;
  animation: encoger 5s ease-in-out infinite;
}
.gracias-404-reclamo .contenedor .contenido .contenido-interno h1 {
  position: relative;
  padding: 30px;
  font-size: 40px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  line-height: 45px;
  color: #fff;
  margin-bottom: 20px;
}
.gracias-404-reclamo .contenedor .contenido .contenido-interno h1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: shape(from 100% 8.04%, curve to 98.02% 0% with 100% 3.5%/99.1% -0.14%, line to 1.86% 12.61%, curve to 0% 20.64% with 0.82% 12.74%/0% 16.3%, vline to 80.41%, curve to 1.86% 88.44% with 0% 84.76%/0.83% 88.32%, line to 98.03% 100%, curve to 100% 91.96% with 99.11% 100.13%/100% 96.49%, vline to 8.04%, close);
  background-color: #00ABE9;
}
.gracias-404-reclamo .contenedor .contenido p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 30px;
}
.gracias-404-reclamo .parrafo-fondo {
  position: absolute;
  bottom: 42px;
  color: #fff;
  max-width: 55.313rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
.gracias-404-reclamo .btn-circulo {
  color: #fff;
  text-decoration: none;
}
.gracias-404-reclamo .btn-circulo:hover {
  color: #552D7A;
}/*# sourceMappingURL=index.css.map */