.whatsapp-btn {
  position: fixed;
  bottom: 80px; 
  right: 20px; 
  background-color: #25D366; 
  color: white; 
  border: none; 
  border-radius: 50%; 
  width: 50px; 
  height: 50px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
  transition: transform 0.3s ease; 
  z-index: 9999; 
  }

  .whatsapp-btn:hover {
    background-color: #128C7E; 
    transform: scale(1.1); 
  }

/***********************************************************************************************************/
/**************************************************************************************************************************************/

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4E37C5;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px; 
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s ease-in-out;
  z-index: 1000;
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.scroll-top-btn:hover {
  background-color: #22126e;
  transform: scale(1.1);
}

.scroll-icon {
  width: 24px; 
  height: 24px; 
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%); 
    opacity: 0; 
  }
  100% {
    transform: translateX(0); 
    opacity: 1; 
  }
}

.btn-quiensomos {
  background-color: #8505ba; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  padding: 22px 34px; 
  font-size: 16px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  animation: slideInFromRight 2s ease-out;
}

.btn-quiensomos:hover {
  background-color: #4d0686; 
  text-shadow: 0 0 2px white, 0 0 2px white; 
}

.btn-quiensomos:focus {
  outline: none; 
}