body {
    background-color: rgba(175, 204, 172);
}
.container-boton {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 55px;
  display: flex;
  align-items: center;
	transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.boton {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 5px;
  transition: ease 1s;
  margin-left: 10px; /* Puede ajustarse según el espacio que necesites */
  /* ... */
}
.boton img {
    max-width: 100%;
    max-height: 100%;
}

.phone-number {
    font-size: 35px;
    color: #000;
    margin-left: 10px; /* Puede ajustarse según el espacio que necesites */
    white-space: nowrap; /* Evita que el número se divida en varias líneas */
}

@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);
    }
}

/* Media Query para ajustar estilos en tamaños de pantalla más pequeños, como dispositivos móviles */
@media only screen and (max-width: 768px) {
    .container-boton {
        bottom: 10px;
        right: 10px;
    }
}