/* WHATSAPP BUTTON START */

.header-cta-but {
  display: block;
  margin-left: 10px;
}

.header-cta-but a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 20px;
  display: block;
  position: relative;
}

.header-cta-but a::before {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  z-index: -1;
  width: 40px;
  height: 40px;
  background: #0077ff;
  background-size: 200%;
  animation: aurora 10s infinite;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
  transition: all 0.4s ease;
}

.header-cta-but a::after {
  content: attr(data-hover);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  color: #191b1d;
  transition: width 0.4s ease;
}

.header-cta-but a:hover::after {
  width: 103%;
}

.header-cta-but a:hover::before {
  width: calc(100% + 50px);
}

/* Variantes */

.header-cta-but.whatsapp a {
  color: hsla(25, 27, 29, 0.6);
}

.header-cta-but.whatsapp a::before {
  background: #ffe900;
}

.header-cta-but.whatsapp a::after {
  color: #0004ff;
}

.header-cta-but.light a {
  color: black;
}

.header-cta-but.light a::before {
  background: #2b2e31;
}

.header-cta-but.light a::after {
  color: #fff;
}

/* Animación */

@keyframes aurora {
  0% {
    background-position: left top;
  }
  25% {
    background-position: right top;
  }
  50% {
    background-position: right bottom;
  }
  75% {
    background-position: left bottom;
  }
  100% {
    background-position: left top;
  }
}

/* WHATSAPP BUTTON END */

.nosotros-link {
  color: rgb(255, 255, 255) !important;
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}
