 /* Contenedor fijo para agrupar los botones */
    .floating-buttons {
      position: fixed;
      bottom: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 100;
    }
    
    /* Estilos comunes para ambos botones */
    .floating-buttons a {
      width: 60px;
      height: 60px;
      display: block;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      line-height: 60px; /* Centra verticalmente el ícono */
      color: #FFF;
      text-decoration: none;
      margin-bottom: 10px; /* Espacio entre botones */
    }
    
    /* Botón de WhatsApp (mantiene el estilo que tenías) */
    .whatsapp {
      background-color: #25d366;
    }
    
    /* Botón para llamar (fondo azul) */
    .phone-call {
      background-color: blue;
    }
    
   