  /* Botão WhatsApp flutuante */
  #botaoWhatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    animation: pulseSync 2s infinite;
  }
    
  /* Ícones maiores */
  #botaoWhatsapp svg,
  #botaoChamada svg {
    width: 28px;
    height: 28px;
  }
  
  /* Animação sincronizada */
  @keyframes pulseSync {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }
  