#botonFlotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px; /* Tamaño del botón */
    height: 60px; /* Altura del botón */
    border-radius: 50%;
    background-image: url('assets/img/icons/whatsapp1.png'); /* Imagen de fondo del botón */
    background-size: cover;
    cursor: pointer;
  }
  
  #ventanaEmergente {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(15, 141, 4, 0.425);
    z-index: 1000;
  }
  
  #ventanaEmergente .fondo {
    padding: 15px;
    background-image: url('assets/img/icons/fondo2.png'); /* Imagen de fondo de la ventana */
    background-size: cover;
    border-radius: 10px;
    position: relative; /* Importante para posicionar el botón de cerrar */
  }
  
  #mensajeWhatsApp {
    width: 100%;
    margin-bottom: 10px;
  }

  #cerrarVentana {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff; /* Puedes cambiar el color si es necesario */
  }
  
  
  
  