  /* Contenedor principal */
  .floating-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  /* Estilo para los botones de calculadoras */
  .calc-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #828b98;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 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;
  }

  /* Estilo para el botón de instalación */
  #pwa-install-btn {
    padding: 12px 20px;
    background-color: #101828;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
  }

  /* Efectos hover */
  .calc-button:hover, #pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.15);
  }

  /* Iconos */
  .calc-button svg, #pwa-install-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: currentColor;
  }

  /* Animaciones */
  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Ocultar botón de la página actual */
  .calc-button[data-current="true"] {
    display: none !important;
  }

  /* Mostrar solo en móvil */
  #pwa-install-btn {
    display: none;
  }

  /* Ajustes para móvil */
  @media (max-width: 768px) {
    .floating-buttons-container {
      bottom: 16px;
      right: 16px;
    }
    .calc-button, #pwa-install-btn {
      padding: 14px 22px;
      font-size: 15px;
    }
    
    /* Mostrar botón de instalación solo en móviles */
    #pwa-install-btn {
      display: flex;
    }
  }
  
/* Ocultar en móviles y tablets pequeñas */
@media (max-width: 767.98px) {
    .btn-download {
        display: none !important;
    }
}