.container-boton {
  background-color: #d52424;
  border: 2px solid #ffffff;
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 110px; /* espacio entre los botones */
  right: 100px;   
  padding: 20px;
  transition: ease 0.3s;
  animation: efecto-busqueda 1.2s infinite;
}

.container-boton:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.boton {
    width: 80px;
    transition: ease 1s;
}

@keyframes efecto-busqueda {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 42, 61, 0.85);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(26, 75, 122, 0);
    }
}

/******* boton para Whatsaap********/
.container-boton-wasa {
  background-color: #2e6329;
  border: 2px solid #fff;
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 20px;
  right: 100px;   
  padding: 20px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.container-boton-wasa:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton-wasa{
    width: 80px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}

/***responsive***/

@media screen and (max-width: 780px) {
  .container-boton,
  .container-boton-wasa {
    right: 100px;  
    left: auto;   
    padding: 14px;
    font-size: 12px;
  }
}

