/* Contenedor principal del botón burbuja */
    .boton-burbuja {
      position: fixed;
      bottom: 20px;
      z-index: 9999;
      /* Ajusta el ancho según necesidad (44px mínimo recomend.) */
      width: 50px;
      height: 50px;
    }

    /* Posicionamiento horizontal configurable */
    .boton-burbuja.posicion-izquierda {
      left: 20px;
    }
    .boton-burbuja.posicion-centro {
      left: 50%;
      transform: translateX(-50%);
    }
    .boton-burbuja.posicion-derecha {
      right: 20px;
    }

    /* El botón cuadrado/redondo que se ve siempre */
    .boton-burbuja .burbuja-toggle {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 50%;
      background-color: green; /* Cambia el color al que necesites */
      color: #fff;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      transition: background-color 0.2s;
    }
    .boton-burbuja .burbuja-toggle:hover {
      background-color: #0056b3;
    }

    /* ------------------------------
       2. MENÚ DE OPCIONES (DESPLEGABLE)
       ------------------------------ */

    .boton-burbuja .menu-acciones {
      position: absolute;
      bottom: 100%; /* Aparece justo encima del botón */
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 8px; /* Separación con el botón */
      list-style: none;
      padding: 0;
      display: none;
      opacity: 0;
      transition: opacity 0.15s ease-in-out;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      min-width: 160px;
      overflow: hidden;
    }

    /* Cuando el contenedor tiene clase .activo, mostramos el menú */
    .boton-burbuja.activo .menu-acciones {
      display: block;
      opacity: 1;
    }

    .boton-burbuja .menu-acciones li {
      margin: 0;
    }
    .boton-burbuja .menu-acciones li a {
      display: flex;
      align-items: center;
      padding: 10px 12px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: background-color 0.15s;
    }
    .boton-burbuja .menu-acciones li a:hover {
      background-color: #f1f1f1;
    }

    /* Icono dentro del enlace */
    .boton-burbuja .menu-acciones li a .icono {
      display: inline-block;
      margin-right: 8px;
      font-size: 18px;
      width: 20px;
      text-align: center;
    }