.whatsapp-floating {
    position: fixed;
    bottom: 20px; /* Distancia desde abajo */
    right: 20px;  /* Distancia desde la derecha */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde oficial de WhatsApp */
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Se asegura de estar por encima de todo */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Tamaño del icono SVG dentro del botón */
.whatsapp-svg {
    width: 35px;
    height: 35px;
}

/* Efecto al pasar el cursor */
.whatsapp-floating:hover {
    background-color: #20ba5a;
    transform: scale(1.1); /* Efecto de agrandado suave */
}