@charset "utf-8";
/* =======================
   BOTÃO FLUTUANTE DO WHATSAPP
   ======================= */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-button img {
    width: 100%;
    max-width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
/* CSS Document */

