.whatsapp-float,
.instagram-float {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 999;
}

.whatsapp-float {
    bottom: 20px;
}

.instagram-float {
    bottom: 90px;
}

.whatsapp-float img,
.instagram-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover,
.instagram-float img:hover {
    transform: scale(1.1);
}

/* MEDIA QUERY ESPECÍFICA DE BOTÕES FLUTUANTES */
@media (max-width: 800px) {
    .whatsapp-float,
    .instagram-float {
        width: 50px;
        height: 50px;
        right: 15px;
    }
    .whatsapp-float {
        bottom: 15px;
    }
    .instagram-float {
        bottom: 75px;
    }
}