.tusa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.guasapeco {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  
  min-width: 150px;
  min-height: 60px;

  max-width: 300px;
  max-height: 60px;

  margin: 50px 0 50px 0;

  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;

  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
background: linear-gradient(90deg, rgba(17,132,118,255) 0%, rgba(26,203,183,1) 100%);
  border: none;
  border-radius: 80px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

chats::after {
  
/* content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .5s ease-in-out 0s; */
}



chats::before {

  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #118476;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.2s infinite;
}



@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;    
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;    
  }
} 



.telegraeco {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  
  min-width: 150px;
  min-height: 60px;

  max-width: 150px;
  max-height: 60px;

  margin: 50px 0 50px 0;

  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;

  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
  background: linear-gradient(90deg, rgba(36,122,249,255) 0%, rgba(40,168,234,1) 100%);
  border: none;
  border-radius: 80px;
  box-shadow: 12px 12px 24px rgba(79, 146, 209, 0.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

  chatst::before {

    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #2582f7;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringt 1.5s infinite;
  }
  
  
  
  @keyframes ringt {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;    
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;    
    }
  } 
