
.boton-flotante-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    /*transform: translateY(-50%);*/
}

.boton-flotante-whatsapp .mensaje-flotante {
    background-color: white;
    color: rgba(0,0,0,.8);;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    position: relative;
    max-width: 200px;
}

.boton-flotante-whatsapp .mensaje-flotante::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
}

.boton-flotante-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
    font-size: 37px;
}

.boton-flotante-whatsapp a:hover {
    background-color: #1eb747;
    color: white !important;
}