/* warsap */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* ICONO */
.whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* EFECTO PULSANTE */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

/* ANIMACIÓN */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* TOOLTIP WHATSAPP */
.whatsapp-tooltip {
    position: fixed;
    bottom: 100px; /* arriba del botón */
    right: 24px;
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

/* FLECHITA */
.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #25D366;
    transform: rotate(45deg);
}

/* ACTIVO */
.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}