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

.titulos {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0px;
  margin-bottom: 91px;
}
@media (max-width: 1024px) {
  .titulos {
    gap: 0;
  }
}
.titulos h2 {
  color: #fff;
  font-size: 60px;
  line-height: 65px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  display: flex;
  padding: 30px;
}
@media (max-width: 1024px) {
  .titulos h2 {
    font-size: 23px;
    line-height: 28px;
    padding: 20px;
  }
}
.titulos .titulo-1 {
  position: relative;
}
.titulos .titulo-1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 4.548;
  clip-path: shape(from 0% 8.04%, curve to 1.82% 0% with 0% 3.51%/0.82% -0.13%, line to 98.28% 12.64%, curve to 100% 20.68% with 99.24% 12.77%/100% 16.33%, vline to 80.38%, curve to 98.28% 88.41% with 100% 84.73%/99.24% 88.3%, line to 1.81% 100%, curve to 0% 91.96% with 0.82% 100.12%/0% 96.49%, vline to 8.04%, close);
  background: var(--titulo-1-bg, #E22A82);
}
.titulos .titulo-2 {
  position: relative;
  margin-top: -18px;
}
@media (max-width: 1024px) {
  .titulos .titulo-2 {
    margin-top: -12px;
  }
}
.titulos .titulo-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 4.188;
  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: var(--titulo-2-bg, #00A58D);
}
.titulos .titulo-3 {
  position: relative;
  text-align: center;
}
.titulos .titulo-3::before {
  content: "";
  position: absolute;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 4.188;
  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: var(--titulo-3-bg, #00A58D);
}

.parrafo-opcional {
  max-width: 63.438rem;
}
.parrafo-opcional .parrafo-opcional__texto {
  color: #552D7A;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
}/*# sourceMappingURL=index.css.map */