.socialBtns{
   position: fixed;
   top: 4.5rem;
   right: .5rem;
   padding:.5rem;
   width: max-content;
   display: none;
   align-items: center;
   justify-content: center;
   gap: .5rem;
   border-radius: 10rem;
   background: linear-gradient(45deg, #f0f0f0, #f9f9f9);
   border: 2px solid #fff;
   box-shadow: 0 3px 8px rgba(0,0,0, .080); 
   flex-direction: column;
   z-index: 15;
}
.socialBtns a{
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: #999;
}
.socialBtns a:hover{
    color: #ff9900;
}

@media(max-width:500px){
    .socialBtns{
        top: 3.2rem;
    }
}



/*Botón Activador Empieza*/
.buttonRRSS {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
  padding: .5rem;
  border: 1px solid #aaa;
  position: fixed;
   top: 4.5rem;
   right: .5rem;
   z-index: 15;
}

@media(max-width:500px){
    .buttonRRSS{
        top: 3.2rem;
    }
}

.bellBtn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.bellBtn path {
  fill: #9b9b9b;
}


.buttonRRSS:hover .bellBtn path{
    fill: #333;
}

.buttonRRSS:hover .bellBtn {
    animation: bellRing 0.9s both;
}

@keyframes bellRing {
  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

.buttonRRSS:active {
  transform: scale(0.92);
}

/*Botón Activador Termina*/




.socialBtnsCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap:.5rem;
    padding: .5rem;
    align-items: center;
    gap: .5rem;
    position: fixed;
    top: 7.7rem;
    right: -100%;
    z-index: 15;
    transition: 350ms ease-in-out;
}

.socialBtnsCont.active{
   right: .5rem; 
}

@media(max-width:500px){
    .socialBtnsCont{
        top: 6.3rem;
    }
}




/*Botones RRSS Empieza*/
.instagram-button {
  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, #EB9C3F, #D02868, #9F3285, #7B3FAD);
}

.instagram-button::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;
}

.instagram-button.instaTick::before {
  background: #ff9900;
}

.instagram-button.claude::before {
  background-color: #fdfdfd;
}

.instagram-button:hover::before {
  transform: translateX(-50%) scale(1);
}

.instagram-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #000000;
}

.instagram-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.instagram-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);
}

.instagram-logo {
  align-items: center;
  justify-content: center;
  background-color: #000000; 
  border-radius: 50%;
  border: 2px solid #fff9c1;
}

.instagram-icon {
  width: 45px;
  height: 45px;
  fill: #ff9900;
  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%);
  }
}

.instagram-button:hover .instagram-logo {
  animation: spin 5s linear infinite;
  width: 40px;
  height: 40px;
  top: 28%;
}

.instagram-button:hover .instagram-icon {
  transform: scale(0.8);
}

.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;
}

.button-text span:first-child {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.button-text span:last-child {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.instagram-button:hover .button-text {
  opacity: 1;
  transform: translateY(0);
}

.instagram-button.instaTick:hover .button-text {
  color: #ffffff;
}

.instagram-button.instaTick:hover .button-text span:last-child {
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .instagram-button:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
  }
}




/*Botones RRSS Empieza*/
.whatsapp-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, #23a350, #1ab954);
}

.whatsapp-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;
}

.whatsapp-botton.whatsTick::before {
  background: #00D23D;
}

.whatsapp-botton.claude::before {
  background-color: #fdfdfd;
}

.whatsapp-botton:hover::before {
  transform: translateX(-50%) scale(1);
}

.whatsapp-botton:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #000000;
}

.whatsapp-botton:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.whatsapp-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);
}

.whatsapp-logo {
  align-items: center;
  justify-content: center;
  background-color: #00D23D; 
  border-radius: 50%;
  border: 2px solid #fff9c1;
}

.whatsapp-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%);
  }
}

.whatsapp-botton:hover .whatsapp-logo {
  animation: spin 5s linear infinite;
  width: 40px;
  height: 40px;
  top: 28%;
}

.whatsapp-botton:hover .whatsapp-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;
}

.button-text span:first-child {
  font-size: 12px;
  font-weight: 500;
}

.button-text span:last-child {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.whatsapp-botton:hover .button-text {
  opacity: 1;
  transform: translateY(7px);
}

.whatsapp-botton.whatsTick:hover .button-text {
  color: #ffffff;
}

.whatsapp-botton.whatsTick:hover .button-text span:last-child {
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-botton:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
  }
}




/*Botones RRSS Empieza*/
.mail-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, #2336a3, #1a5fb9);
}

.mail-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;
}

.mail-botton.mailTick::before {
  background: #0062d2;
}

.mail-botton.claude::before {
  background-color: #fdfdfd;
}

.mail-botton:hover::before {
  transform: translateX(-50%) scale(1);
}

.mail-botton:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #000000;
}

.mail-botton:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.mail-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);
}

.mail-logo {
  align-items: center;
  justify-content: center;
  background-color: #0085d2; 
  border-radius: 50%;
  border: 2px solid #fff9c1;
}

.mail-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%);
  }
}

.mail-botton:hover .mail-logo {
  animation: spin 5s linear infinite;
  width: 40px;
  height: 40px;
  top: 28%;
}

.mail-botton:hover .mail-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;
}

.button-text span:first-child {
  font-size: 12px;
  font-weight: 500;
}

.button-text span:last-child {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.mail-botton:hover .button-text {
  opacity: 1;
  transform: translateY(7px);
}

.mail-botton.mailTick:hover .button-text {
  color: #ffffff;
}

.mail-botton.mailTick:hover .button-text span:last-child {
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .mail-botton:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
  }
}



/*Botones RRSS Termina*/