/* Botón flotante de llamada */
#call-button {
    position: fixed;
    bottom: 32px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #2a7193;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    border: none;
  }
  
  /* Ícono dentro del botón */
  #call-button i {
    color: #fff;
    font-size: 28px;
  }

  