.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    width: 60px;
    text-decoration:none;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    font-size: 32px;
    text-decoration: none !important;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;  /* Mudado de bottom para right */
    top: 50%;    /* Adicionado para centralizar verticalmente */
    transform: translateY(-50%);  /* Adicionado para centralizar verticalmente */
    width: 0;
    height: 0;
    border-top: 8px solid transparent;  /* Ajustado para apontar para direita */
    border-bottom: 8px solid transparent;  /* Ajustado para apontar para direita */
    border-left: 8px solid #fff;  /* Mudado para criar seta apontando para direita */
    border-right: none;  /* Removido border-right */
}

.whatsapp-counter {
    position: absolute;
    top: 0px;
    right: -5px;
    background-color: #ff4444;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
