
/*Botones RRSS Empieza*/
.phone-botton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #000000;
  border-radius: 12px;
  padding: 0;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  position: relative;
  box-shadow: 4px 4px 0px #333;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 6.5rem;
  width: 6.5rem;
  cursor: pointer;
  background: linear-gradient(45deg, #a32323, #b91a1a);
}

.phone-botton::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150%;
  width: 300%;
  height: 300%;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.phone-botton.phoneTick::before {
  background: #d20000;
}

.phone-botton.claude::before {
  background-color: #fdfdfd;
}

.phone-botton:hover::before {
  transform: translateX(-50%) scale(1);
}

.phone-botton:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #000000;
}

.phone-botton:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.phone-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.phone-logo {
  align-items: center;
  justify-content: center;
  background-color: #8d0000; 
  border-radius: 50%;
  border: 2px solid #fff9c1;
}

.phone-icon {
  width: 45px;
  height: 45px;
  fill: #fff;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.phone-botton:hover .phone-logo {
  animation: spin 5s linear infinite;
  width: 40px;
  height: 40px;
  top: 28%;
}

.phone-botton:hover .phone-icon {
  transform: scale(0.6);
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  z-index: 2;
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
}

.phoneNumberSpan {
  font-size: .8rem !important;
  font-weight: 500;
}



.phone-botton:hover .button-text {
  opacity: 1;
  transform: translateY(7px);
}



@media (hover: hover) and (pointer: fine) {
  .phone-botton:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
  }
}
