/* Estilos para o botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: 20px;
    background-color: transparent;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 200px;
    height: 200px;
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        position: static;
        width: 140px;
        height: 140px;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        margin: 0 auto;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
    }
    
    .whatsapp-float img {
        width: 140px;
        height: 140px;
    }
}