/** BOTON FLOTANTE DE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 70px;
    z-index: 999;
    text-decoration: none;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tooltip WhatsApp FUERA del flujo */
.wa-tooltip {
    position: absolute;
    right: 70px; /* lo separa del botón */
    top: 80%;
    transform: translateY(-50%) translateX(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;

    transition: all 0.3s ease;
}

/* Hover SOLO sobre el botón real */
.whatsapp-float:hover {
    transform: scale(1.15);
}

/* Mostrar tooltip */
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* FIN BOTON WHATSAPP */