/* Container fixo com posição dinâmica */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

/* Classes para controle lateral */
.whatsapp-right {
    right: 20px;
}
.whatsapp-left {
    left: 20px;
}

/* Estilo do balão de texto */
.whatsapp-balloon {
    display: none;
    margin-bottom: 10px;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    transform: translateY(10px);
}

/* Setinha do balão */
.whatsapp-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: #25D366 transparent transparent transparent;
}

/* Botão com imagem do WhatsApp */
.whatsapp-button img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efeito hover no botão */
.whatsapp-button img:hover {
    transform: scale(1.1);
}
