/* assets/css/whatsapp_fix.css */

/*
 * Estilos para o botão flutuante do WhatsApp com imagem PNG.
 * Este arquivo substitui os estilos anteriores para exibir apenas a imagem.
 */

#whatsapp-fixed-button {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000;
    line-height: 0; /* Remove extra space below image */
}

#whatsapp-fixed-button img {
    width: 75px;
    height: 75px;
    border-radius: 50%; /* Optional: if the image itself is not circular */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

#whatsapp-fixed-button img:hover {
    transform: scale(1.1);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #whatsapp-fixed-button {
        bottom: 20px;
        left: 20px;
    }

    #whatsapp-fixed-button img {
        width: 75px; /* Slightly larger for touch on mobile */
        height: 75px;
    }
}