/*Estilização do Botão Flutuador do WhatsApp*/

#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2147483647; /* z-index máximo real */
    pointer-events: auto;
}

#whatsapp-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#whatsapp-link {
    background-color: #25D366;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
    text-decoration: none;
}

#whatsapp-link:hover {
    transform: scale(1.08);
}

#whatsapp-link i {
    color: #fff; /* branco */
    font-size: 30px;
}

.whatsapp-label {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #222; /* preto/cinza escuro */
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

#whatsapp-close {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    #whatsapp-link {
        width: 58px;
        height: 58px;
    }

    #whatsapp-link i {
        font-size: 26px;
    }
}