/* Boton */

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 36px;
  border: 1px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: transparent !important;
  border-radius: 100px;
  font-weight: 400;
  color: #686766cc !important;
  box-shadow: 0 0 0 1px var(--c-secundario) !important;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #686766;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent  !important;
  background-color: transparent !important;
  color: #686766;

}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #686766;
}


.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


/* Boton blanco */

.animated-button-white {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 36px;
  border: 1px solid transparent;
  font-size: 16px;
  background-color: var(--c-secundario) !important;
  border-radius: 100px;
  font-weight: 400;
  color: #686766cc !important;
  box-shadow: 0 0 0 1px var(--c-blanco) !important;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-white svg {
  position: absolute;
  width: 24px;
  fill: #686766;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-white .arr-1 {
  right: 16px;
}

.animated-button-white .arr-2 {
  left: -25%;
}

.animated-button-white .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-white .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-white:hover {
  box-shadow: 0 0 0 12px transparent  !important;
  background-color: transparent !important;
  color: var(--c-blanco) !important;
  border: 1px solid var(--c-secundario);
}

.animated-button-white:hover .arr-1 {
  right: -25%;
}

.animated-button-white:hover .arr-2 {
  left: 16px;
}

.animated-button-white:hover .text {
  transform: translateX(12px);
}

.animated-button-white:hover svg {
  fill: var(--c-blanco);
}


.animated-button-white:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}



.animated-button-white.kids:hover {
  box-shadow: 0 0 0 12px transparent  !important;
  background-color: #e172d2c9 !important;
  color: var(--c-blanco) !important;
  border: 1px solid #e172d2;
}
