.btn-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Torna o botão redondo. Remova esta linha se seu PNG for quadrado */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-flutuante:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.btn-flutuante-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Redução sutil em telas muito pequenas para não cobrir tanto conteúdo */
@media (max-width: 576px) {
    .btn-flutuante {
        width: 80px;
        height: 80px;
        bottom: 15px;
        right: 15px;
    }
}