.flaticon-bike,
.flaticon-golf-cart {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    /* Color ajustado para rgb(170, 132, 83) */
    filter: invert(44%) sepia(32%) saturate(843%) hue-rotate(1deg) brightness(93%) contrast(90%);
}

.flaticon-bike {
    background-image: url('../icons/bike.svg');
}

.flaticon-golf-cart {
    background-image: url('../icons/golf-cart.svg');
}

.faded {
    opacity: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 0;
}
.navbar .nav-item form {
    margin: 0 4px;
}
.whatsapp-float {
    position: fixed;
    bottom: 120px; /* antes 20px */
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

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

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

