/*
Theme Name: DevForge
Author: 
Description: Tema por assinatura DevForge
Version: 1.0
*/


.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}


@media (max-width: 767px) {
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
    }
}
.banner-desktop img,
.banner-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float span {
    font-size: 15px;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    background: #1ebe5d;
}