/* Correções finais para o widget do WhatsApp */

/* Posicionar o widget no canto inferior direito e aumentar tamanho */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Posicionado à direita */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden; /* Impedir que elementos internos ultrapassem a borda */
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Garantir que o ícone esteja centralizado e sem elementos estranhos */
.whatsapp-button i {
    line-height: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Remover qualquer traço ou elemento estranho */
.whatsapp-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}
