  /* Contenedor de botones flotantes */
  .floating-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  /* Estilo base (igual al botón de instalación) */
  .floating-calc-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #101828;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.3s forwards;
  }

  /* Animación de aparición escalonada */
  .floating-calc-button:nth-child(1) { animation-delay: 0.1s; }
  .floating-calc-button:nth-child(2) { animation-delay: 0.2s; }
  .floating-calc-button:nth-child(3) { animation-delay: 0.3s; }

  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Efecto hover */
  .floating-calc-button:hover {
    background-color: #1D2939;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.15);
  }

  /* Iconos */
  .floating-calc-button svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: currentColor;
  }

  /* Versión móvil - botones más grandes */
  @media (max-width: 768px) {
    .floating-buttons-container {
      bottom: 16px;
      right: 16px;
    }
    .floating-calc-button {
      padding: 14px 22px;
      font-size: 15px;
    }
  }