/* ================= WHATSAPP GLOBAL RESPONSIVO ================= */

/* 🖥️ DESKTOP (1200px+) */
@media (min-width: 1200px) {
    .whatsapp-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 58px;
        height: 58px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
        z-index: 9999;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        font-size: 28px;
        color: white;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }
}

/* 📱 TABLETS (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        z-index: 9999;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        font-size: 26px;
        color: white;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    }
}

/* 📱 CELULAR GRANDE (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .whatsapp-float {
        position: fixed;
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        z-index: 9999;
        transition: all 0.25s ease;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        font-size: 24px;
        color: white;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
}

/* 📱 CELULAR PEQUEÑO (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .whatsapp-float {
        position: fixed;
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
        z-index: 9999;
        transition: all 0.25s ease;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        font-size: 22px;
        color: white;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    }
}

/* 📱 CELULAR EXTRA PEQUEÑO (< 480px) */
@media (max-width: 479px) {
    .whatsapp-float {
        position: fixed;
        bottom: 14px;
        right: 14px;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
        z-index: 9999;
        transition: all 0.25s ease;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        font-size: 20px;
        color: white;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    }
}
