/* WhatsApp Flutuante - Botão Fixo */
.whatsapp-button,
.whatsapp-float,
.whatsapp-bubble,
[class*="whatsapp"][class*="float"],
[id*="whatsapp"][id*="float"] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover,
.whatsapp-float:hover,
.whatsapp-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i,
.whatsapp-float i,
.whatsapp-bubble i {
    color: white;
    font-size: 1.5rem;
}

/* DESKTOP - Mostrar o botão */
@media (min-width: 769px) {
    .whatsapp-button,
    .whatsapp-float,
    .whatsapp-bubble,
    [class*="whatsapp"][class*="float"],
    [id*="whatsapp"][id*="float"] {
        display: flex !important;
    }
}

/* MOBILE - Esconder o botão flutuante */
@media (max-width: 768px) {
    .whatsapp-button,
    .whatsapp-float,
    .whatsapp-bubble,
    [class*="whatsapp"][class*="float"],
    [id*="whatsapp"][id*="float"] {
        display: none !important;
    }

    /* Se o botão ainda aparecer, forçar com visibility também */
    .whatsapp-button,
    .whatsapp-float,
    .whatsapp-bubble {
        visibility: hidden;
        pointer-events: none;
    }
}
